Skip to content

Commit

Permalink
fix sqlness
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelScofield committed Dec 26, 2023
1 parent bb06bde commit 60e9726
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/cases/standalone/common/create/create.result
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Error: 4000(TableAlreadyExists), Table already exists: `greptime.public.test2`

CREATE TABLE 'N.~' (i TIMESTAMP TIME INDEX);

Error: 1002(Unexpected), Unexpected, violated: Invalid table name: N.~
Error: 1004(InvalidArguments), Invalid table name: N.~

DESC TABLE integers;

Expand Down
4 changes: 2 additions & 2 deletions tests/runner/src/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ impl Env {
"start".to_string(),
"-c".to_string(),
self.generate_config_file(subcommand, db_ctx),
"--http-addr=127.0.0.1:5001".to_string(),
"--http-addr=127.0.0.1:5002".to_string(),
];
(args, SERVER_ADDR.to_string())
}
Expand All @@ -213,7 +213,7 @@ impl Env {
"true".to_string(),
"--enable-region-failover".to_string(),
"false".to_string(),
"--http-addr=127.0.0.1:5001".to_string(),
"--http-addr=127.0.0.1:5002".to_string(),
];
(args, METASRV_ADDR.to_string())
}
Expand Down

0 comments on commit 60e9726

Please sign in to comment.