From f8afa5a6f696dbc565ef4cb7bb464c6b6a5ce04e Mon Sep 17 00:00:00 2001 From: Maxim Korolyov Date: Mon, 17 Jul 2023 22:40:49 +0200 Subject: [PATCH] small changes to retry failed by timeout CI --- database/cassandra/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/cassandra/README.md b/database/cassandra/README.md index 5cec0ab66..c138dff62 100644 --- a/database/cassandra/README.md +++ b/database/cassandra/README.md @@ -1,7 +1,7 @@ # Cassandra / ScyllaDB * Drop command will not work on Cassandra 2.X because it rely on -system_schema table which comes with 3.X. Works as expected for ScyllaDB. +system_schema table which comes with 3.X. Works for ScyllaDB. * Other commands should work properly but are **not tested** * 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: * 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.