You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-**DDL Operations:** DDL statements (CREATE TABLE, ALTER TABLE, etc.) cannot be executed through the driver's `execute()` method. Use `database.update_ddl()` for DDL operations.
343
+
-**DDL Operations:** DDL statements (CREATE TABLE, ALTER TABLE, etc.) cannot be executed through the driver's `execute()` method. Use `database.update_ddl()` for DDL operations.
321
344
322
-
-**Mutation Limit:** Spanner has a 20,000 mutation limit per transaction. For bulk inserts, batch operations into multiple transactions.
345
+
-**Mutation Limit:** Spanner has a 20,000 mutation limit per transaction. For bulk inserts, batch operations into multiple transactions.
323
346
324
-
-**Read-Only Snapshots:** The default session context uses read-only snapshots. For write operations, use `database.run_in_transaction()` or configure a transaction context.
347
+
-**Read-Only Snapshots:** The default session context uses read-only snapshots. For write operations, use `database.run_in_transaction()` or configure a transaction context.
325
348
326
-
-**Emulator Limitations:** The Spanner emulator doesn't support all features (e.g., some complex queries, backups). Test critical functionality against a real Spanner instance.
349
+
-**Emulator Limitations:** The Spanner emulator doesn't support all features (e.g., some complex queries, backups). Test critical functionality against a real Spanner instance.
327
350
328
-
-**`google.api_core.exceptions.AlreadyExists`:** Resource already exists. Check if the table or index already exists before creating.
351
+
-**`google.api_core.exceptions.AlreadyExists`:** Resource already exists. Check if the table or index already exists before creating.
329
352
330
-
-**`google.api_core.exceptions.NotFound`:** Resource not found. Verify the instance, database, and table names are correct.
353
+
-**`google.api_core.exceptions.NotFound`:** Resource not found. Verify the instance, database, and table names are correct.
0 commit comments