Skip to content

Commit

Permalink
fix: databoost tests (#1870)
Browse files Browse the repository at this point in the history
  • Loading branch information
surbhigarg92 committed Aug 7, 2023
1 parent 4154c02 commit 45e13c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/batch.js
Expand Up @@ -44,7 +44,7 @@ async function createAndExecuteQueryPartitions(
sql: 'SELECT * FROM Singers',
// DataBoost option is an optional parameter which can also be used for partition read
// and query to execute the request via spanner independent compute resources.
dataBoostEnabled: false,
dataBoostEnabled: true,
};

// A Partition object is serializable and can be used from a different process.
Expand Down
2 changes: 1 addition & 1 deletion system-test/spanner.ts
Expand Up @@ -8737,7 +8737,7 @@ describe('Spanner', () => {
const QUERY = {
table: googleSqlTable.name,
// Set databoostenabled to true for enabling serveless analytics.
dataBoostEnabled: false,
dataBoostEnabled: true,
keys: [key],
columns: ['Key'],
};
Expand Down

0 comments on commit 45e13c7

Please sign in to comment.