Skip to content

Commit 53cbd2f

Browse files
authored
Merge pull request #1688 from ydb-platform/remove-experimental-commit
* Removed comment `experimental` from `ydb.ParamsBuilder` and `ydb.ParamsFromMap`
2 parents b3a728c + 078cf0f commit 53cbd2f

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
* Removed comment `experimental` from `ydb.ParamsBuilder` and `ydb.ParamsFromMap`
12
* Fixed panic on closing `internal/query/sessionCore.done` channel twice
23
* Fixed hangup when try to send batch of messages with size more, then grpc limits from topic writer internals
34

params_builder.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ package ydb
33
import "github.com/ydb-platform/ydb-go-sdk/v3/internal/params"
44

55
// ParamsBuilder used for create query arguments instead of tons options.
6-
//
7-
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
86
func ParamsBuilder() params.Builder {
97
return params.Builder{}
108
}

params_map.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ func (p wrongParameters) ToYDB(a *allocator.Allocator) (map[string]*Ydb.TypedVal
2020
}
2121

2222
// ParamsFromMap build parameters from named map
23-
//
24-
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
2523
func ParamsFromMap(m map[string]any) params.Parameters {
2624
namedParameters := make([]any, 0, len(m))
2725
for name, val := range m {

0 commit comments

Comments
 (0)