This is an automated email from the ASF dual-hosted git repository.

mck pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-website.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 79053d83 CASSANDRA-21155: Fix CQL version errors in QuickStart guide
79053d83 is described below

commit 79053d832feb1c51d3092a7eace420d03f3a8a2c
Author: arvindksi274-ksolves <[email protected]>
AuthorDate: Mon Feb 9 15:54:01 2026 +0530

    CASSANDRA-21155: Fix CQL version errors in QuickStart guide
---
 site-content/source/modules/ROOT/pages/quickstart.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/site-content/source/modules/ROOT/pages/quickstart.adoc 
b/site-content/source/modules/ROOT/pages/quickstart.adoc
index cc51da9f..fc070b2c 100644
--- a/site-content/source/modules/ROOT/pages/quickstart.adoc
+++ b/site-content/source/modules/ROOT/pages/quickstart.adoc
@@ -90,7 +90,7 @@ The CQL shell, or cqlsh, is one tool to use in interacting 
with the database. We
 [source]
 --
 
-docker run --rm --network cassandra -v "$(pwd)/data.cql:/scripts/data.cql" -e 
CQLSH_HOST=cassandra -e CQLSH_PORT=9042 -e CQLVERSION=3.4.6 nuvo/docker-cqlsh 
+docker run --rm --network cassandra -v "$(pwd)/data.cql:/scripts/data.cql" -e 
CQLSH_HOST=cassandra -e CQLSH_PORT=9042 -e CQLVERSION=3.4.7 nuvo/docker-cqlsh
 
 --
 Note: The cassandra server itself (the first docker run command you ran) takes 
a few seconds to start up. The above command will throw an error if the server 
hasn't finished its init sequence yet, so give it a few seconds to spin up.
@@ -107,7 +107,7 @@ Much like an SQL shell, you can also of course use CQLSH to 
run CQL commands int
 
 [source]
 --
-docker run --rm -it --network cassandra nuvo/docker-cqlsh cqlsh cassandra 9042 
--cqlversion='3.4.5' 
+docker run --rm -it --network cassandra nuvo/docker-cqlsh cqlsh cassandra 9042 
--cqlversion='3.4.7'
 --
 
 This should get you a prompt like so:
@@ -115,7 +115,7 @@ This should get you a prompt like so:
 [source]
 --
 Connected to Test Cluster at cassandra:9042.
-[cqlsh 5.0.1 | Cassandra 4.0.4 | CQL spec 3.4.5 | Native protocol v5]
+[cqlsh 5.0.1 | Cassandra 5.0.6 | CQL spec 3.4.7 | Native protocol v5]
 Use HELP for help.
 cqlsh>
 --


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to