Skip to content

Commit

Permalink
adapt to latest rust client to make integation test work
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiKaiWi committed Feb 2, 2023
1 parent ccf5977 commit 4f00e52
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ workspace = true
[dependencies]
anyhow = "1.0.58"
async-trait = "0.1"
ceresdb-client-rs = { git = "https://github.com/CeresDB/ceresdb-client-rs.git", rev = "8bba0c9434a8f8373cf480af69652553a36fa576" }
ceresdb-client-rs = { git = "https://github.com/CeresDB/ceresdb-client-rs.git", rev = "a72e673103463c7962e01a097592fc7edbcc0b79" }
sqlness = "0.2"
tokio = { workspace = true }
2 changes: 1 addition & 1 deletion integration_tests/cases/local/03_dml/issue-59.result
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ SELECT id+1, count(distinct(account))
FROM issue59
GROUP BY id+1;

affected_rows: -1
affected_rows: 0

explain SELECT id+1, count(distinct(account))
FROM issue59
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/cases/local/03_dml/select_having.result
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ FROM
HAVING
1 = 2;

affected_rows: -1
affected_rows: 0

SELECT
`value` % 3,
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/cases/local/basic.result
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ affected_rows: 0

SELECT `nAmE` FROM `DeMo`;

affected_rows: -1
affected_rows: 0

DROP TABLE `DeMo`;

Expand Down

0 comments on commit 4f00e52

Please sign in to comment.