Skip to content

Commit

Permalink
Merge pull request #536 from sfu-db/arrow-stream
Browse files Browse the repository at this point in the history
Arrow stream
  • Loading branch information
wangxiaoying committed Sep 11, 2023
2 parents 3075e5f + 4998482 commit f1bcd57
Show file tree
Hide file tree
Showing 53 changed files with 3,585 additions and 2,065 deletions.
15 changes: 15 additions & 0 deletions .github/config/db1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"driver": "org.postgresql.Driver",
"url": "jdbc:postgresql://postgres:5432/postgres",
"username": "postgres",
"password": "postgres",
"costParams": {
"join": 10.0,
"agg": 20.0,
"sort": 20.0,
"trans": 3.0
},
"dialect": "postgres",
"cardEstType": "postgres",
"partitionType": "postgres"
}
15 changes: 15 additions & 0 deletions .github/config/db2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"driver": "org.postgresql.Driver",
"url": "jdbc:postgresql://postgres:5432/postgres",
"username": "postgres",
"password": "postgres",
"costParams": {
"join": 10.0,
"agg": 20.0,
"sort": 20.0,
"trans": 3.0
},
"dialect": "postgres",
"cardEstType": "postgres",
"partitionType": "postgres"
}
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ jobs:
- uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "8"
java-version: "17"

- uses: actions/cache@v2
with:
Expand Down Expand Up @@ -255,4 +255,5 @@ jobs:
MSSQL_URL: "mssql://sa:mssql!Password@mssql:1433/tempdb"
DB1: "postgresql://postgres:postgres@postgres:5432/postgres"
DB2: "postgresql://postgres:postgres@postgres:5432/postgres"
FED_CONFIG_PATH: ${{ github.workspace }}/.github/config
SQLITE3_STATIC: 1
Loading

0 comments on commit f1bcd57

Please sign in to comment.