Skip to content

Commit 6946e59

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

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1
-295
lines changed

.github/workflows/dev.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,14 @@
1616
# under the License.
1717

1818
name: Dev
19-
2019
on:
2120
pull_request: {}
2221
push: {}
23-
2422
concurrency:
2523
group: ${{ github.repository }}-${{ github.ref }}-${{ github.workflow }}
2624
cancel-in-progress: true
27-
2825
permissions:
2926
contents: read
30-
3127
jobs:
3228
pre-commit:
3329
name: "pre-commit"
@@ -37,7 +33,6 @@ jobs:
3733
with:
3834
fetch-depth: 0
3935
persist-credentials: false
40-
4136
- uses: actions/setup-python@v5
4237
with:
4338
python-version: '3.x'

.github/workflows/test.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
# under the License.
1717

1818
name: Test
19-
2019
on:
2120
push:
2221
branches:
@@ -25,17 +24,13 @@ on:
2524
tags:
2625
- '**'
2726
pull_request:
28-
2927
concurrency:
3028
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
3129
cancel-in-progress: true
32-
3330
permissions:
3431
contents: read
35-
3632
env:
3733
DOCKER_VOLUME_PREFIX: ".docker/"
38-
3934
jobs:
4035
ubuntu:
4136
name: AMD64 Ubuntu 22.04 JDK ${{ matrix.jdk }} Maven ${{ matrix.maven }}
@@ -72,7 +67,6 @@ jobs:
7267
-e CI=true \
7368
-e "DEVELOCITY_ACCESS_KEY=$DEVELOCITY_ACCESS_KEY" \
7469
${{ matrix.image }}
75-
7670
macos:
7771
name: ${{ matrix.arch }} macOS ${{ matrix.macos }} Java JDK ${{ matrix.jdk }}
7872
runs-on: macos-${{ matrix.macos }}
@@ -109,7 +103,6 @@ jobs:
109103
env:
110104
DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
111105
run: ci/scripts/java_test.sh $(pwd) $(pwd)/build
112-
113106
windows:
114107
name: AMD64 Windows Server 2022 Java JDK ${{ matrix.jdk }}
115108
runs-on: windows-latest

.pre-commit-config.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ repos:
2525
- id: check-added-large-files
2626
- id: file-contents-sorter
2727
files: .gitignore
28-
2928
- repo: local
3029
hooks:
3130
- id: rat
@@ -39,7 +38,6 @@ repos:
3938
dev/release/run_rat.sh apache-arrow-go.tar.gz"
4039
always_run: true
4140
pass_filenames: false
42-
4341
- repo: https://github.com/koalaman/shellcheck-precommit
4442
rev: v0.10.0
4543
hooks:

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

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

1212
name: 'test1_all_datatypes_null_h2'
13-
1413
type: 'null'
15-
1614
vectors:
1715
- 'INT_FIELD1'
1816
- 'BOOL_FIELD2'
@@ -33,23 +31,18 @@ vectors:
3331
- 'BIT_FIELD17'
3432
- 'LIST_FIELD19'
3533
- 'MAP_FIELD20'
36-
3734
rowCount: '5'
38-
3935
create: 'CREATE TABLE table1 (int_field1 INT, bool_field2 BOOLEAN, tinyint_field3 TINYINT, smallint_field4 SMALLINT, bigint_field5 BIGINT,
4036
decimal_field6 DECIMAL(20,2), double_field7 DOUBLE, real_field8 REAL, time_field9 TIME, date_field10 DATE, timestamp_field11 TIMESTAMP,
4137
binary_field12 VARBINARY(100), varchar_field13 VARCHAR(256), blob_field14 BLOB, clob_field15 CLOB, char_field16 CHAR(14), bit_field17 BIT,
4238
list_field19 INT ARRAY, map_field20 VARCHAR(256));'
43-
4439
data:
4540
- 'INSERT INTO table1 VALUES (null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);'
4641
- 'INSERT INTO table1 VALUES (null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);'
4742
- 'INSERT INTO table1 VALUES (null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);'
4843
- 'INSERT INTO table1 VALUES (null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);'
4944
- 'INSERT INTO table1 VALUES (null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);'
50-
5145
query: 'select int_field1, bool_field2, tinyint_field3, smallint_field4, bigint_field5, decimal_field6, double_field7, real_field8,
5246
time_field9, date_field10, timestamp_field11, binary_field12, varchar_field13, blob_field14, clob_field15, char_field16, bit_field17,
5347
list_field19 from table1'
54-
5548
drop: 'DROP table table1;'

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

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

1212
name: 'test1_all_datatypes_selected_null_rows_h2'
13-
1413
type: 'selected_null_row'
15-
1614
vectors:
1715
- 'INT_FIELD1'
1816
- 'BOOL_FIELD2'
@@ -33,39 +31,29 @@ vectors:
3331
- 'BIT_FIELD17'
3432
- 'LIST_FIELD19'
3533
- 'MAP_FIELD20'
36-
3734
create: 'CREATE TABLE table1 (int_field1 INT, bool_field2 BOOLEAN, tinyint_field3 TINYINT, smallint_field4 SMALLINT, bigint_field5 BIGINT,
3835
decimal_field6 DECIMAL(20,2), double_field7 DOUBLE, real_field8 REAL, time_field9 TIME, date_field10 DATE, timestamp_field11 TIMESTAMP,
3936
binary_field12 VARBINARY(100), varchar_field13 VARCHAR(256), blob_field14 BLOB, clob_field15 CLOB, char_field16 CHAR(14), bit_field17 BIT,
4037
list_field19 INT ARRAY, map_field20 VARCHAR(256));'
41-
4238
data:
4339
- 'INSERT INTO table1 VALUES (null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);'
44-
4540
- 'INSERT INTO table1 VALUES (101, 1, 45, 12000, 92233720, 17345667789.23, 56478356785.345, 56478356785.345, PARSEDATETIME(''12:45:35 GMT'', ''HH:mm:ss z''),
4641
PARSEDATETIME(''2018-02-12 GMT'', ''yyyy-MM-dd z''), PARSEDATETIME(''2018-02-12 12:45:35 GMT'', ''yyyy-MM-dd HH:mm:ss z''),
4742
''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'', ''some text that needs to be converted to varchar'',
4843
''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'', ''some text that needs to be converted to clob'', ''some char text'',
4944
1, ARRAY[1, 2, 3],''{"a":"b"}'');'
50-
5145
- 'INSERT INTO table1 VALUES (null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);'
52-
5346
- 'INSERT INTO table1 VALUES (101, 1, 45, 12000, 92233720, 17345667789.23, 56478356785.345, 56478356785.345, PARSEDATETIME(''12:45:35 GMT'', ''HH:mm:ss z''),
5447
PARSEDATETIME(''2018-02-12 GMT'', ''yyyy-MM-dd z''), PARSEDATETIME(''2018-02-12 12:45:35 GMT'', ''yyyy-MM-dd HH:mm:ss z''),
5548
''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'', ''some text that needs to be converted to varchar'',
5649
''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'', ''some text that needs to be converted to clob'', ''some char text'',
5750
1, ARRAY[1, 2, 3],''{"c":"d"}'');'
58-
5951
- 'INSERT INTO table1 VALUES (null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);'
60-
6152
query: 'select int_field1, bool_field2, tinyint_field3, smallint_field4, bigint_field5, decimal_field6, double_field7, real_field8,
6253
time_field9, date_field10, timestamp_field11, binary_field12, varchar_field13, blob_field14, clob_field15, char_field16, bit_field17,
6354
list_field19, map_field20 from table1'
64-
6555
drop: 'DROP table table1;'
66-
6756
rowCount: '5'
68-
6957
values:
7058
- 'INT_FIELD1=null,101,null,101,null'
7159
- 'BOOL_FIELD2=null,1,null,1,null'

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

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

1212
name: 'test1_bigint_h2'
13-
1413
type: 'big_int'
15-
1614
vector: 'BIGINT_FIELD5'
17-
1815
create: 'CREATE TABLE table1 (bigint_field5 BIGINT);'
19-
2016
data:
2117
- 'INSERT INTO table1 VALUES (92233720);'
2218
- 'INSERT INTO table1 VALUES (92233720);'
@@ -28,11 +24,8 @@ data:
2824
- 'INSERT INTO table1 VALUES (92233720);'
2925
- 'INSERT INTO table1 VALUES (92233720);'
3026
- 'INSERT INTO table1 VALUES (92233720);'
31-
3227
query: 'select bigint_field5 from table1;'
33-
3428
drop: 'DROP table table1;'
35-
3629
values:
3730
- '92233720'
3831
- '92233720'

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

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

1212
name: 'test1_binary_h2'
13-
1413
type: 'binary'
15-
1614
vector: 'BINARY_FIELD12'
17-
1815
create: 'CREATE TABLE table1 (binary_field12 VARBINARY(100));'
19-
2016
data:
2117
- 'INSERT INTO table1 VALUES (''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'');'
2218
- 'INSERT INTO table1 VALUES (''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'');'
@@ -28,11 +24,8 @@ data:
2824
- 'INSERT INTO table1 VALUES (''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'');'
2925
- 'INSERT INTO table1 VALUES (''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'');'
3026
- 'INSERT INTO table1 VALUES (''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'');'
31-
3227
query: 'select binary_field12 from table1;'
33-
3428
drop: 'DROP table table1;'
35-
3629
values:
3730
- '736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'
3831
- '736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'

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

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

1212
name: 'test1_bit_h2'
13-
1413
type: 'bit'
15-
1614
vector: 'BIT_FIELD17'
17-
1815
create: 'CREATE TABLE table1 (bit_field17 BIT);'
19-
2016
data:
2117
- 'INSERT INTO table1 VALUES (1);'
2218
- 'INSERT INTO table1 VALUES (1);'
@@ -28,11 +24,8 @@ data:
2824
- 'INSERT INTO table1 VALUES (1);'
2925
- 'INSERT INTO table1 VALUES (1);'
3026
- 'INSERT INTO table1 VALUES (1);'
31-
3227
query: 'select bit_field17 from table1;'
33-
3428
drop: 'DROP table table1;'
35-
3629
values:
3730
- '1'
3831
- '1'

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

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

1212
name: 'test1_blob_h2'
13-
1413
type: 'blob'
15-
1614
vector: 'BLOB_FIELD14'
17-
1815
create: 'CREATE TABLE table1 (blob_field14 BLOB);'
19-
2016
data:
2117
- 'INSERT INTO table1 VALUES (''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'');'
2218
- 'INSERT INTO table1 VALUES (''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'');'
@@ -28,11 +24,8 @@ data:
2824
- 'INSERT INTO table1 VALUES (''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'');'
2925
- 'INSERT INTO table1 VALUES (''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'');'
3026
- 'INSERT INTO table1 VALUES (''736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'');'
31-
3227
query: 'select blob_field14 from table1;'
33-
3428
drop: 'DROP table table1;'
35-
3629
values:
3730
- '736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'
3831
- '736f6d6520746578742074686174206e6565647320746f20626520636f6e76657274656420746f2062696e617279'

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

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

1212
name: 'test1_bool_h2'
13-
1413
type: 'bool'
15-
1614
vector: 'BOOL_FIELD2'
17-
1815
create: 'CREATE TABLE table1 (bool_field2 BOOLEAN);'
19-
2016
data:
2117
- 'INSERT INTO table1 VALUES (1);'
2218
- 'INSERT INTO table1 VALUES (1);'
@@ -28,11 +24,8 @@ data:
2824
- 'INSERT INTO table1 VALUES (1);'
2925
- 'INSERT INTO table1 VALUES (1);'
3026
- 'INSERT INTO table1 VALUES (1);'
31-
3227
query: 'select bool_field2 from table1;'
33-
3428
drop: 'DROP table table1;'
35-
3629
values:
3730
- 'true'
3831
- 'true'

0 commit comments

Comments
 (0)