Skip to content

Commit 8a7d6cc

Browse files
committed
fix(spanner): SQL syntax error
1 parent d702269 commit 8a7d6cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spanner/src/pg_update_dml_returning.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function pg_update_dml_returning(string $instanceId, string $databaseId): void
4848
$result = $transaction->execute(
4949
'UPDATE Albums '
5050
. 'SET MarketingBudget = MarketingBudget * 2 '
51-
. 'WHERE SingerId = 1 and AlbumId = 1'
51+
. 'WHERE SingerId = 1 and AlbumId = 1 '
5252
. 'RETURNING MarketingBudget'
5353
);
5454
foreach ($result->rows() as $row) {

0 commit comments

Comments
 (0)