-
Notifications
You must be signed in to change notification settings - Fork 177
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
CLI - Fix: SQL update
and delete
are throwing exceptions
#2358
Comments
This only happens in the interactive view. The queries succeed without complaint when they're provided on the command line. |
This seems to be due to passing |
It seems to be down to the // The `tabled::count_rows` add the header as a row, so subtract it.
let row_count = print_row_count(table.count_rows().wrapping_sub(1));
table.with(tabled::settings::panel::Footer::new(row_count)); This is from the Edit: Nope I didn't read carefully. The |
I believe this is down to the |
It seems like any
update
anddelete
query inspacetime sql
will cause the CLI to throw an exception.The updates do go through, but the CLI crashes.
The text was updated successfully, but these errors were encountered: