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 d4843ef commit 086d82aCopy full SHA for 086d82a
CHANGELOG.md
@@ -1,3 +1,5 @@
1
+* Added public type alias `ydb.Params` to `internal/params.Parameters` for external usage
2
+
3
## v3.104.6
4
* Refactored `table.TransactionControl` and `query.TransactionControl` for use single implementation in `internal/tx`
5
* Changed `ydb.WithTxControl` context modifier for allow both `table.TransactionControl` and `query.TransactionControl`
params_builder.go
@@ -2,6 +2,10 @@ package ydb
import "github.com/ydb-platform/ydb-go-sdk/v3/internal/params"
+// Params is an interface of parameters
6
+// which returns from ydb.ParamsBuilder().Build()
7
+type Params = params.Parameters
8
9
// ParamsBuilder used for create query arguments instead of tons options.
10
func ParamsBuilder() params.Builder {
11
return params.Builder{}
0 commit comments