-
Notifications
You must be signed in to change notification settings - Fork 329
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat:migrate slect tests from duckDB
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
tests/cases/standalone/common/select/multi_column_reference.result
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | | ||
+---+ | ||
|
7 changes: 7 additions & 0 deletions
7
tests/cases/standalone/common/select/multi_column_reference.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |