-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Better printing of CDC options in DESCRIBE TABLE in cqlsh #245
Comments
/cc @jul-stas (I think you implemented printing of CDC options in |
@avelanarius IIRC the reason was to separate schema extensions from regular table options. In general, putting schema extensions among "normal" options, like |
I think server side DESCRIBE should solve this one... |
Small note: CDC options in server-side DESCRIBE were added only recently (5.2, 5.3 doesn't have it): scylladb/scylladb@62ced66 |
@fruch - shall I move it to cqlsh repo? |
You can move it But it would need to be part of the scylla core as well, cause the server side describe |
I'll need to understand better what is needed in core - please open a separate issue if neede. |
Currently,
cqlsh
prints CDC options inDESCRIBE TABLE
queries in a separate line:I think it would be better to print those options not in a separate line, but within the
CREATE TABLE
statement. That way it is more consistent with other options and easily copyable:(for a reference, Java Driver 3.x already prints it in that format when using
toString()
after this commit: scylladb/java-driver@ae2254a)The text was updated successfully, but these errors were encountered: