Skip to content

Commit d69e1d0

Browse files
committed
adjust brank lines in yml files
1 parent 6946e59 commit d69e1d0

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

adapter/jdbc/src/test/resources/h2/test1_all_datatypes_h2.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,10 @@
1010
#language governing permissions and limitations under the License.
1111

1212
name: 'test1_all_datatypes_h2'
13-
1413
create: 'CREATE TABLE table1 (int_field1 INT, bool_field2 BOOLEAN, tinyint_field3 TINYINT, smallint_field4 SMALLINT, bigint_field5 BIGINT,
1514
decimal_field6 DECIMAL(20,2), double_field7 DOUBLE, real_field8 REAL, time_field9 TIME, date_field10 DATE, timestamp_field11 TIMESTAMP,
1615
binary_field12 VARBINARY(100), varchar_field13 VARCHAR(256), blob_field14 BLOB, clob_field15 CLOB, char_field16 CHAR(14), bit_field17 BIT,
1716
null_field18 NULL, list_field19 INT ARRAY, map_field20 VARCHAR(256));'
18-
1917
data:
2018
- 'INSERT INTO table1 VALUES (101, 1, 45, 12000, 92233720, 17345667789.23, 56478356785.345, 56478356785.345, PARSEDATETIME(''12:45:35 GMT'', ''HH:mm:ss z''),
2119
PARSEDATETIME(''2018-02-12 GMT'', ''yyyy-MM-dd z''), PARSEDATETIME(''2018-02-12 12:45:35 GMT'', ''yyyy-MM-dd HH:mm:ss z''),
@@ -66,14 +64,10 @@ data:
6664
PARSEDATETIME(''2018-02-12 GMT'', ''yyyy-MM-dd z''), PARSEDATETIME(''2018-02-12 12:45:35 GMT'', ''yyyy-MM-dd HH:mm:ss z''),
6765
''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'', ''some text that needs to be converted to varchar'',
6866
''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'', ''some text that needs to be converted to clob'', ''some char text'', 1, null, ARRAY[],''{"s":"t"}'');'
69-
7067
query: 'select int_field1, bool_field2, tinyint_field3, smallint_field4, bigint_field5, decimal_field6, double_field7, real_field8,
7168
time_field9, date_field10, timestamp_field11, binary_field12, varchar_field13, blob_field14, clob_field15, char_field16, bit_field17, null_field18, list_field19, map_field20 from table1'
72-
7369
drop: 'DROP table table1;'
74-
7570
rowCount: '10'
76-
7771
values:
7872
- 'INT_FIELD1=101,102,103,104,null,null,107,108,109,110'
7973
- 'BOOL_FIELD2=1,1,1,1,1,1,1,1,1,1'

0 commit comments

Comments
 (0)