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.
ydb.WithFakeTx(ydb.ScriptingQueryMode)
ydb.WithFakeTx(ydb.QueryExecuteQueryMode)
1 parent c974dd2 commit 56b0777Copy full SHA for 56b0777
CHANGELOG.md
@@ -1,3 +1,5 @@
1
+* Added alias from `ydb.WithFakeTx(ydb.ScriptingQueryMode)` to `ydb.WithFakeTx(ydb.QueryExecuteQueryMode)` for compatibility with legacy code
2
+
3
## v3.95.0
4
* Added implementation of `database/sql` driver over query service client
5
* Added `ydb.WithQueryService(bool)` option to explicitly enable `database/sql` driver over query service client
sql.go
@@ -177,6 +177,7 @@ func WithFakeTx(modes ...QueryMode) ConnectorOption {
177
xsql.WithTableOptions(legacy.WithFakeTxModes(
178
legacy.ScriptingQueryMode,
179
)),
180
+ xsql.WithQueryOptions(propose.WithFakeTx()),
181
)
182
case QueryExecuteQueryMode:
183
opts = append(opts,
0 commit comments