The current sample reads:
```cql
CREATE KEYSPACE my_keyspace
WITH replication = {
'class': 'NetworkTopologyStrategy',
'replication_factor': 3,
} AND tablets = {
'enabled': false
};
```
The additional comma after `'replication_factor': 3` breaks the query execution.
Closes scylladb/scylladb#19177