Skip to content

Commit

Permalink
fix: break CI again 🥲 (GreptimeTeam#1859)
Browse files Browse the repository at this point in the history
* fix information schema case

Signed-off-by: Ruihang Xia <[email protected]>

* disable -Wunused_result lint

Signed-off-by: Ruihang Xia <[email protected]>

---------

Signed-off-by: Ruihang Xia <[email protected]>
  • Loading branch information
waynexia authored and paomian committed Oct 19, 2023
1 parent e01bdc8 commit 5bcb5d2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
1 change: 0 additions & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ rustflags = [
"-Wclippy::print_stderr",
"-Wclippy::implicit_clone",
"-Aclippy::items_after_test_module",
"-Wunused_results",
]
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 5bcb5d2

Please sign in to comment.