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

agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


The following commit(s) were added to refs/heads/main by this push:
     new a08347a3 Fix `show tables` fails (#715)
a08347a3 is described below

commit a08347a35ac16dc8dcbd6d420a42a1c337547ed6
Author: r.4ntix <[email protected]>
AuthorDate: Wed Mar 29 08:41:33 2023 +0800

    Fix `show tables` fails (#715)
---
 ballista/client/src/context.rs | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/ballista/client/src/context.rs b/ballista/client/src/context.rs
index 8b745627..37777b30 100644
--- a/ballista/client/src/context.rs
+++ b/ballista/client/src/context.rs
@@ -337,6 +337,9 @@ impl BallistaContext {
                 Statement::ShowColumns { .. } => {
                     is_show_variable = true;
                 }
+                Statement::ShowTables { .. } => {
+                    is_show_variable = true;
+                }
                 _ => {
                     is_show_variable = false;
                 }

Reply via email to