Skip to content

Commit f1bcd57

Browse files
authored
Merge pull request #536 from sfu-db/arrow-stream
Arrow stream
2 parents 3075e5f + 4998482 commit f1bcd57

Some content is hidden

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

53 files changed

+3585
-2065
lines changed

.github/config/db1.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"driver": "org.postgresql.Driver",
3+
"url": "jdbc:postgresql://postgres:5432/postgres",
4+
"username": "postgres",
5+
"password": "postgres",
6+
"costParams": {
7+
"join": 10.0,
8+
"agg": 20.0,
9+
"sort": 20.0,
10+
"trans": 3.0
11+
},
12+
"dialect": "postgres",
13+
"cardEstType": "postgres",
14+
"partitionType": "postgres"
15+
}

.github/config/db2.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"driver": "org.postgresql.Driver",
3+
"url": "jdbc:postgresql://postgres:5432/postgres",
4+
"username": "postgres",
5+
"password": "postgres",
6+
"costParams": {
7+
"join": 10.0,
8+
"agg": 20.0,
9+
"sort": 20.0,
10+
"trans": 3.0
11+
},
12+
"dialect": "postgres",
13+
"cardEstType": "postgres",
14+
"partitionType": "postgres"
15+
}

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ jobs:
198198
- uses: actions/setup-java@v3
199199
with:
200200
distribution: "temurin"
201-
java-version: "8"
201+
java-version: "17"
202202

203203
- uses: actions/cache@v2
204204
with:
@@ -255,4 +255,5 @@ jobs:
255255
MSSQL_URL: "mssql://sa:mssql!Password@mssql:1433/tempdb"
256256
DB1: "postgresql://postgres:postgres@postgres:5432/postgres"
257257
DB2: "postgresql://postgres:postgres@postgres:5432/postgres"
258+
FED_CONFIG_PATH: ${{ github.workspace }}/.github/config
258259
SQLITE3_STATIC: 1

0 commit comments

Comments
 (0)