Skip to content

Commit 45e13c7

Browse files
authored
fix: databoost tests (#1870)
1 parent 4154c02 commit 45e13c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

samples/batch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function createAndExecuteQueryPartitions(
4444
sql: 'SELECT * FROM Singers',
4545
// DataBoost option is an optional parameter which can also be used for partition read
4646
// and query to execute the request via spanner independent compute resources.
47-
dataBoostEnabled: false,
47+
dataBoostEnabled: true,
4848
};
4949

5050
// A Partition object is serializable and can be used from a different process.

system-test/spanner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8737,7 +8737,7 @@ describe('Spanner', () => {
87378737
const QUERY = {
87388738
table: googleSqlTable.name,
87398739
// Set databoostenabled to true for enabling serveless analytics.
8740-
dataBoostEnabled: false,
8740+
dataBoostEnabled: true,
87418741
keys: [key],
87428742
columns: ['Key'],
87438743
};

0 commit comments

Comments
 (0)