Skip to content

Commit

Permalink
fix information schema case
Browse files Browse the repository at this point in the history
Signed-off-by: Ruihang Xia <[email protected]>
  • Loading branch information
waynexia committed Jun 30, 2023
1 parent 563f6e0 commit 2ea7156
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ database my_db;

Affected Rows: 1

use
my_db;
use my_db;

++
++
Expand Down Expand Up @@ -51,8 +50,7 @@ order by table_schema, table_name;
| greptime | my_db | foo | ts | Int64 | TIME INDEX |
+---------------+--------------+------------+-------------+-----------+---------------+

use
public;
use public;

++
++
Expand Down
6 changes: 2 additions & 4 deletions tests/cases/standalone/common/system/information_schema.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
create
database my_db;

use
my_db;
use my_db;

create table foo
(
Expand All @@ -26,5 +25,4 @@ where table_catalog = 'greptime'
and table_schema != 'public'
order by table_schema, table_name;

use
public;
use public;

0 comments on commit 2ea7156

Please sign in to comment.