Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
b41sh authored and drmingdrmer committed Jan 27, 2025
1 parent a16cf8d commit 4705cc8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

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

Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ statement ok
ALTER VIRTUAL COLUMN (v['k1']['k2'] as v1, v[1][2] as v2, v[3] as v3) FOR t1;

query TTT
SHOW VIRTUAL COLUMN WHERE database='default' AND table='t1';
SHOW VIRTUAL COLUMNS WHERE database='test_virtual_db' AND table='t1';
----
test_virtual_db t1 v['k1']['k2'] AS v1, v[1][2] AS v2, v[3] AS v3

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ query T
explain select a, v1, v2 from t1
----
TableScan
├── table: default.default.t1
├── table: default.test_virtual_db.t1
├── output columns: [a (#0), v['a'][0] (#2), v['b'] (#3)]
├── read rows: 1
├── read size: < 1 KiB
Expand Down

0 comments on commit 4705cc8

Please sign in to comment.