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
feat: automatically set default sequence kind in JDBC and PGAdapter (#3658)
* feat: automatically set default sequence kind in JDBC and PGAdapter
Add a connection property that automatically sets the default sequence kind for
a database if a DDL statement fails due to no default sequence kind having been
set. This allows tools like PGAdapter and ORMs that use JDBC to automatically
use auto_increment columns without the need to add an ALTER DATABASE statement.
* chore: fix clirr failures
* test: fix integration test
* fix: correctly retry if a failure happens in the middle
"The sequence kind of an identity column .+ is not specified\\. Please specify the sequence kind explicitly or set the database option `default_sequence_kind`\\.");
33
+
34
+
/** Private constructor. Use {@link SpannerExceptionFactory} to create instances. */
0 commit comments