Skip to content

Commit 5fe6329

Browse files
authored
Merge branch 'trunk' into kczimm/max-memory-allocator
2 parents 08b94c1 + a9b888a commit 5fe6329

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
- name: Test
9292
run: mvn test -B
9393
env:
94-
API_KEY: ${{ secrets.SPICE_CLOUD_API_KEY }}
94+
API_KEY: ${{ secrets.SPICE_CLOUD_QUICKSTART_API_KEY }}
9595

9696
build:
9797
runs-on: ubuntu-latest
@@ -153,5 +153,5 @@ jobs:
153153
- name: Test
154154
run: mvn test -B
155155
env:
156-
API_KEY: ${{ secrets.SPICE_CLOUD_API_KEY }}
156+
API_KEY: ${{ secrets.SPICE_CLOUD_QUICKSTART_API_KEY }}
157157

src/test/java/ai/spice/FlightQueryTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public void testQuerySpiceCloudPlatform() throws ExecutionException, Interrupted
4646
.withSpiceCloud()
4747
.build();
4848

49-
String sql = "SELECT number, \"timestamp\", base_fee_per_gas, base_fee_per_gas / 1e9 AS base_fee_per_gas_gwei FROM eth.blocks limit 2000";
49+
String sql = "SELECT tpep_pickup_datetime, total_amount, passenger_count from taxi_trips limit 10;";
5050
FlightStream res = spiceClient.query(sql);
5151

5252
int totalRows = 0;
@@ -60,8 +60,8 @@ public void testQuerySpiceCloudPlatform() throws ExecutionException, Interrupted
6060
totalRows += root.getRowCount();
6161
}
6262

63-
assertEquals("Expected column count does not match", 4, columnCount);
64-
assertEquals("Expected row count does not match", 2000, totalRows);
63+
assertEquals("Expected column count does not match", 3, columnCount);
64+
assertEquals("Expected row count does not match", 10, totalRows);
6565

6666
} catch (Exception e) {
6767
fail("Should not throw any exception: " + e.getMessage());

0 commit comments

Comments
 (0)