mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-19 16:15:07 +00:00
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.
(cherry picked from commit cf157e4423)
Closes scylladb/scylladb#19194