Skip to content

Commit

Permalink
feat:migrate slect tests from duckDB
Browse files Browse the repository at this point in the history
  • Loading branch information
Gump9 committed Sep 24, 2023
1 parent 7310ec0 commit 59fcc5f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
22 changes: 22 additions & 0 deletions tests/cases/standalone/common/select/multi_column_reference.result
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
create schema test;

Affected Rows: 1

create table test.tbl(a int, b timestamp time index);

Affected Rows: 0

insert into test.tbl values (1,1), (2,2), (3,3);

Affected Rows: 3

select test.tbl.a from test.tbl;

+---+
| a |
+---+
| 1 |
| 2 |
| 3 |
+---+

Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
create schema test;

create table test.tbl(a int, b timestamp time index);

insert into test.tbl values (1,1), (2,2), (3,3);

select test.tbl.a from test.tbl;

0 comments on commit 59fcc5f

Please sign in to comment.