Skip to content

Commit 086d82a

Browse files
committed
ydb.Params
1 parent d4843ef commit 086d82a

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* Added public type alias `ydb.Params` to `internal/params.Parameters` for external usage
2+
13
## v3.104.6
24
* Refactored `table.TransactionControl` and `query.TransactionControl` for use single implementation in `internal/tx`
35
* Changed `ydb.WithTxControl` context modifier for allow both `table.TransactionControl` and `query.TransactionControl`

params_builder.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ package ydb
22

33
import "github.com/ydb-platform/ydb-go-sdk/v3/internal/params"
44

5+
// Params is an interface of parameters
6+
// which returns from ydb.ParamsBuilder().Build()
7+
type Params = params.Parameters
8+
59
// ParamsBuilder used for create query arguments instead of tons options.
610
func ParamsBuilder() params.Builder {
711
return params.Builder{}

0 commit comments

Comments
 (0)