Skip to content

Commit 10aa299

Browse files
1NepuNep1Viktor PentyukhovViktor Pentyukhovasmyasnikov
authored
Removed experimental from DoWithResult & DoTxWithResult (#1847)
* Removed experimental from DoWithResult & DoTxWithResult * Added changes into changelog.mg * Update CHANGELOG.md Co-authored-by: Aleksey Myasnikov <[email protected]> --------- Co-authored-by: Viktor Pentyukhov <[email protected]> Co-authored-by: Viktor Pentyukhov <[email protected]> Co-authored-by: Aleksey Myasnikov <[email protected]>
1 parent e098e77 commit 10aa299

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* Removed experimental label from `retry.DoWithResult` and `retry.DoTxWithResult`
2+
13
## v3.113.5
24
* Fixed incorrect string conversion of `Uint64Value` values greater than `int64` max value
35

retry/sql.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ func Do(ctx context.Context, db *sql.DB, op func(ctx context.Context, cc *sql.Co
6060
}
6161

6262
// DoWithResult is a retryer of database/sql conn with fallbacks on errors
63-
//
64-
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
6563
func DoWithResult[T any](ctx context.Context, db *sql.DB,
6664
op func(ctx context.Context, cc *sql.Conn) (T, error),
6765
opts ...doOption,
@@ -179,8 +177,6 @@ func DoTx(ctx context.Context, db *sql.DB, op func(context.Context, *sql.Tx) err
179177
}
180178

181179
// DoTxWithResult is a retryer of database/sql transactions with fallbacks on errors
182-
//
183-
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
184180
func DoTxWithResult[T any](ctx context.Context, db *sql.DB,
185181
op func(context.Context, *sql.Tx) (T, error),
186182
opts ...doTxOption,

0 commit comments

Comments
 (0)