Skip to content

Tags: yugabyte/cqlsh

Tags

v3.10-yb-20

Toggle v3.10-yb-20's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fixed incomplete error message (#24)

Fixed incomplete error message in Python2.7 on running `Drop Keyspace` query.

v3.10-yb-19

Toggle v3.10-yb-19's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Added `os.path.expanduser` (#22)

v3.10-yb-18

Toggle v3.10-yb-18's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Print Timing for all DMLs (#19)

* Print Timing for all DMLs

* Minor change

v3.10-yb-10-2.14

Toggle v3.10-yb-10-2.14's commit message
Updating python driver

v3.10-yb-17

Toggle v3.10-yb-17's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Updating python driver (#18)

* Updating python driver

* Updating python driver 2

v3.10-yb-15-2.18

Toggle v3.10-yb-15-2.18's commit message
Fix for "[YCQL] describe keyspace <keyspace_name> throws error #16530"

v3.10-yb-13-2.17.3

Toggle v3.10-yb-13-2.17.3's commit message
Fix for "[YCQL] describe keyspace <keyspace_name> throws error #16530"

v3.10-yb-16

Toggle v3.10-yb-16's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #17 from yugabyte/Py3.11_module_re_fix

Fix for : "[YCQL] YCQLSH - module 're' has no attribute 'sre_parse' -…

v3.10-yb-15

Toggle v3.10-yb-15's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #15 from yugabyte/ycqlsh-timing

TIMING [ON|OFF] Command Added

v3.10-yb-14

Toggle v3.10-yb-14's commit message
[DB-3774] cqlsh: Provide option to disable DEBUG command in ycqlsh

Summary:
This diff provides an option to disable the `DEBUG` command which opens a Python debugging session.

To disable the debugging functionality, the `ycqlsh` command be started with option `--disallow_python_debug`. The default value of the flag is False.

Test Plan:
Tried on local machine

```
>> ./ycqlsh
Connected to local cluster at 127.0.0.1:9042.
[ycqlsh 5.0.1 | Cassandra 3.9-SNAPSHOT | CQL spec 3.4.2 | Native protocol v4]
Use HELP for help.
ycqlsh> debug
--Return--
> /Users/stiwary/code/cqlsh/bin/ycqlsh.py(2050)do_debug()->None
-> pdb.set_trace()
(Pdb) exit

ycqlsh> exit

>>./ycqlsh --disallow_python_debug

Connected to local cluster at 127.0.0.1:9042.
[ycqlsh 5.0.1 | Cassandra 3.9-SNAPSHOT | CQL spec 3.4.2 | Native protocol v4]
Use HELP for help.
ycqlsh> debug
*** Python debugger disabled because shell started with --disallow_python_debug
ycqlsh> exit
```

Reviewers: skumar, oleg

Reviewed By: oleg

Subscribers: yql

Differential Revision: https://phabricator.dev.yugabyte.com/D23650