18 Patch |
4 Review |
c05443c0980cb51720ba0503f26f084c1538729c,
578815541a54c7601a4f5b5d3ceff20fc2343b9f,
414c1c5771ca05c23c8c1279dbdb90a673dda040,
6a1b1f26b7174e8c9bf86a96514ab626ce2a4117,
1619413e5602b93641af1ccf5adbee80eaa2b53c,
9359af2ea5bd80850f29a485dd054321bc946491,
1de8720b3255e6df4dc6ae747b098c50b1fe1bbc,
24c8a21c1c131abd89c6b646343ff098d1b3263b,
c05443c0980cb51720ba0503f26f084c1538729c,
58015fd681dadbe31068ecfb4f4c0eb506de8efa,
39a0703b65c985c4b99eed1c045d0f00bbbcc9db,
3db7796c1b7aa0e953fab621c0334c576cc7da35,
b3f27381a5efcf3d06bceb211c72479abcd6004a,
68c828f48a2ba961bb8c9b99a6c57b76a3f16e3d,
578815541a54c7601a4f5b5d3ceff20fc2343b9f,
b94a3a14e53e10dd332ef5a3fe25811cf4e7825e,
32527553a8f37a9a3e7b6847bcc06869f8aa59e2,
02fc65f9def0069c09bc9516b5ae5aafcc14b58b |
c9d6c725dd0b4aa5693eb1c6d2221c28e9e99c6e,
255505ea7915a1261788018ede37ee8c82ac2062,
c9d6c725dd0b4aa5693eb1c6d2221c28e9e99c6e,
ec07cd7e76c93bf713618f381480f500f6c4e62f |
1de8720b3255e6df4dc6ae747b098c50b1fe1bbc | Author: Mick Semb Wever <mck@apache.org>
| 2020-04-17 10:47:44+02:00
Fix python codestyle warning (and failing test_pycodestyle_compliance)
patch by Eduard Tudenhöfner; reviewed by Mick Semb Wever for CASSANDRA-15734
Co-authored-by: Eduard Tudenhöfner <eduard.tudenhoefner@datastax.com>
39a0703b65c985c4b99eed1c045d0f00bbbcc9db | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2020-04-09 12:01:21+02:00
Mark system_views/system_virtual_schema as non-alterable keyspaces in cqlsh
patch by Eduard Tudenhoefner; reviewed by Benjamin Lerer for
CASSANDRA-15711
3db7796c1b7aa0e953fab621c0334c576cc7da35 | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2020-04-08 12:37:42+02:00
Fix cqlsh output test
patch by Eduard Tudenhoefner; reviewed by Michael Semb Wever for
CASSANDRA-15707
b3f27381a5efcf3d06bceb211c72479abcd6004a | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2020-04-08 11:43:39+02:00
Mark system_views/system_virtual_schema as system keyspaces in cqlsh
patch by Eduard Tudenhoefner; reviewed by Benjamin Lerer for
CASSANDRA-15706
This is so that those keyspaces don't show up in tab completions. This
also fixes the cqlsh completion tests.
58015fd681dadbe31068ecfb4f4c0eb506de8efa | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2020-04-07 17:16:40+02:00
Use Exception.message in copyutil.py only if it exists
Exception.message was removed in Python 3, so only refer to it when it
exists on an Exception instance.
Also fix code style compliance in formatting.py (missing blank lines)
patch by Eduard Tudenhoefner; reviewed by Stefania Alborghetti for CASSANDRA-15702
24c8a21c1c131abd89c6b646343ff098d1b3263b | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2020-04-06 17:36:03+02:00
Add Python3.8 compatible SaferScanner
This is necessary because Python 3.8 renamed `sre_parse.Pattern` to `sre_parse.State` (see https://bugs.python.org/issue34681 and https://github.com/python/cpython/pull/9310/files for details)
patch by Eduard Tudenhöfner, reviewed by Mick Semb Wever for CASSANDRA-15573
32527553a8f37a9a3e7b6847bcc06869f8aa59e2 | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2020-04-02 17:49:43+02:00
Add Ubuntu 19.10 with JDK11 Image
This image includes Python 3.6+3.7+3.8 installations in case C* wants to
perform testing with multiple Python versions.
c05443c0980cb51720ba0503f26f084c1538729c | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2020-04-01 16:24:14+02:00
Allow cqlsh to run with Python 2.7/Python 3.6+
* Adds a minimal manual test that starts cqlsh with python3.7 & 3.8 in a Docker container. It also fixes a minor issue when starting up cqlsh with python3.7+, where `webbrowser._tryorder` is `None` as can be seen in https://github.com/python/cpython/blob/3.7/Lib/webbrowser.py#L1. Note that we're checking `webbrowser._tryorder` for `None` instead of doing `webbrowser.get()` because it's likely that there's no default browser installed in a Dockerized environment and so things would fail with `could not locate runnable browser` (https://github.com/python/cpython/blob/3.7/Lib/webbrowser.py#L65)
* Adds python3.8 testing to CircleCI
* Fixes some Python warnings that occur with newer versions
patch by Eduard Tudenhöfner, reviewed by Mick Semb Wever for CASSANDRA-15659
c05443c0980cb51720ba0503f26f084c1538729c | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2020-04-01 16:24:14+02:00
Allow cqlsh to run with Python 2.7/Python 3.6+
* Adds a minimal manual test that starts cqlsh with python3.7 & 3.8 in a Docker container. It also fixes a minor issue when starting up cqlsh with python3.7+, where `webbrowser._tryorder` is `None` as can be seen in https://github.com/python/cpython/blob/3.7/Lib/webbrowser.py#L1. Note that we're checking `webbrowser._tryorder` for `None` instead of doing `webbrowser.get()` because it's likely that there's no default browser installed in a Dockerized environment and so things would fail with `could not locate runnable browser` (https://github.com/python/cpython/blob/3.7/Lib/webbrowser.py#L65)
* Adds python3.8 testing to CircleCI
* Fixes some Python warnings that occur with newer versions
patch by Eduard Tudenhöfner, reviewed by Mick Semb Wever for CASSANDRA-15659
1619413e5602b93641af1ccf5adbee80eaa2b53c | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2017-08-21 11:36:08+08:00
Fix cassandra-stress hang issues when an error during cluster connection happens
patch by Eduard Tudenhoefner; reviewed by Stefania Alborghetti for CASSANDRA-12938
68c828f48a2ba961bb8c9b99a6c57b76a3f16e3d | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2016-11-23 09:17:26+08:00
cqlsh auto completion: refactor definition of compaction strategy options
patch by Eduard Tudenhoefner; reviewed by Stefania Alborghetti for CASSANDRA-12946
578815541a54c7601a4f5b5d3ceff20fc2343b9f | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2016-11-14 09:56:15+08:00
Move cqlsh syntax rules into separate module and allow easier customization
patch by Eduard Tudenhoefner; reviewed by Stefania Alborghetti for CASSANDRA-12897
578815541a54c7601a4f5b5d3ceff20fc2343b9f | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2016-11-14 09:56:15+08:00
Move cqlsh syntax rules into separate module and allow easier customization
patch by Eduard Tudenhoefner; reviewed by Stefania Alborghetti for CASSANDRA-12897
414c1c5771ca05c23c8c1279dbdb90a673dda040 | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2016-01-22 15:49:11-06:00
cqlsh: Fix INSERT and UPDATE LWT handling
Patch by Eduard Tudenhoefner; reviewed by Tyler Hobbs for
CASSANDRA-11003
9359af2ea5bd80850f29a485dd054321bc946491 | Author: Eduard Tudenhoefner <eduard.tudenhoefner@datastax.com>
| 2015-12-08 10:23:51+01:00
CASSANDRA-10828: Allow usage of multiplier in start value of population sequence