You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: database/cassandra/README.md
+8-4
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,16 @@
1
1
# Cassandra / ScyllaDB
2
2
3
-
* Drop command will not work on Cassandra 2.X because it rely on
4
-
system_schema table which comes with 3.X. Works for ScyllaDB.
5
-
* Other commands should work properly but are **not tested**
3
+
*`Drop()` method will not work on Cassandra 2.X because it rely on
4
+
system_schema table which comes with 3.X
5
+
* Other methods should work properly but are **not tested**
6
6
* The Cassandra driver (gocql) does not natively support executing multiple statements in a single query. To allow for multiple statements in a single migration, you can use the `x-multi-statement` param. There are two important caveats:
7
7
* This mode splits the migration text into separately-executed statements by a semi-colon `;`. Thus `x-multi-statement` cannot be used when a statement in the migration contains a string with a semi-colon.
8
8
* The queries are not executed in any sort of transaction/batch, meaning you are responsible for fixing partial migrations.
9
-
* For ScyllaDB no additional configuration required as it is a drop-in replacement for Cassandra.
9
+
10
+
**ScyllaDB**
11
+
12
+
* No additional configuration is required since it is a drop-in replacement for Cassandra.
0 commit comments