Skip to content
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

fix: break CI again πŸ₯² #1859

Merged
merged 2 commits into from
Jun 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
Loading