Skip to content

Commit 311bf65

Browse files
committed
* Removed experimantal comment for query service client
1 parent 5e60f7c commit 311bf65

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* Removed `experimantal` comment for query service client
2+
13
## v3.81.1
24
* Fixed nil pointer dereference panic on failed `ydb.Open`
35
* Added ip discovery. Server can show own ip address and target hostname in the ListEndpoint message. These fields are used to bypass DNS resolving.

driver.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,6 @@ func (d *Driver) Table() table.Client {
194194
}
195195

196196
// Query returns query client
197-
//
198-
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
199197
func (d *Driver) Query() *internalQuery.Client {
200198
return d.query.Must()
201199
}

query/client.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ import (
1212

1313
type (
1414
// Executor is an interface for execute queries
15-
//
16-
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
1715
Executor interface {
1816
// Exec execute query without result
1917
//
@@ -40,8 +38,6 @@ type (
4038
QueryRow(ctx context.Context, query string, opts ...options.Execute) (Row, error)
4139
}
4240
// Client defines API of query client
43-
//
44-
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
4541
Client interface {
4642
Executor
4743

@@ -85,15 +81,11 @@ type (
8581
// QueryResultSet is a helper which read all rows from first result set in result
8682
//
8783
// Warning: the large result set from query will be materialized and can happened to "OOM killed" problem
88-
//
89-
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
9084
QueryResultSet(ctx context.Context, query string, opts ...options.Execute) (ClosableResultSet, error)
9185

9286
// QueryRow is a helper which read only one row from first result set in result
9387
//
9488
// ReadRow returns error if result contains more than one result set or more than one row
95-
//
96-
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
9789
QueryRow(ctx context.Context, query string, opts ...options.Execute) (Row, error)
9890

9991
// ExecuteScript starts long executing script with polling results later
@@ -157,8 +149,6 @@ func WithLabel(lbl string) options.RetryOptionsOption {
157149
}
158150

159151
// WithRetryBudget creates option with external budget
160-
//
161-
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
162152
func WithRetryBudget(b budget.Budget) options.RetryOptionsOption {
163153
return options.WithRetryBudget(b)
164154
}

0 commit comments

Comments
 (0)