We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c154a commit 6346d90Copy full SHA for 6346d90
test/mockserver_tests/test_basics.py
@@ -218,7 +218,11 @@ def test_partitioned_dml(self):
218
add_update_count(sql, 100, AutocommitDmlMode.PARTITIONED_NON_ATOMIC)
219
engine = create_engine(
220
"spanner:///projects/p/instances/i/databases/d",
221
- connect_args={"client": self.client, "pool": PingingPool(size=10)},
+ connect_args={
222
+ "client": self.client,
223
+ "pool": PingingPool(size=10),
224
+ "ignore_transaction_warnings": True,
225
+ },
226
)
227
# TODO: Support autocommit_dml_mode as a connection variable in execution
228
# options.
0 commit comments