test: add tests for external table (#1460)

This commit is contained in:
Weny Xu
2023-04-25 16:14:46 +09:00
committed by GitHub
parent eb50cee601
commit 7f14d40798
4 changed files with 201 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
c_int,c_float,c_string,c_bool,c_date,c_datetime
1,1.1,"1.11",true,1970-01-01,1970-01-01T00:00:00
2,2.2,"2.22",true,2020-11-08,2020-11-08T01:00:00
3,,"3.33",true,1969-12-31,1969-11-08T02:00:00
4,4.4,,false,,
5,6.6,"",false,1990-01-01,1990-01-01T03:00:00
4,4e6,,false,,
4,4.0e-6,,false,,
1 c_int c_float c_string c_bool c_date c_datetime
2 1 1.1 1.11 true 1970-01-01 1970-01-01T00:00:00
3 2 2.2 2.22 true 2020-11-08 2020-11-08T01:00:00
4 3 3.33 true 1969-12-31 1969-11-08T02:00:00
5 4 4.4 false
6 5 6.6 false 1990-01-01 1990-01-01T03:00:00
7 4 4e6 false
8 4 4.0e-6 false