/
githubmirror
/
ydb-go-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-go-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
internal/table/errors.go
18 строк
560 B
Aleksey Myasnikov
fixed deadlock on closing session
29 янв 2025, 19:36
29 янв 2025, 19:36
40dcd23
Код
Авторство
О чём код?
package table import ( "errors" "github.com/ydb-platform/ydb-go-sdk/v3/internal/xerrors" ) var ( errNilClient = xerrors.Wrap(errors.New("table client is not initialized")) // errClosedClient returned by a Client instance to indicate // that Client is closed early and not able to complete requested operation. errClosedClient = xerrors.Wrap(errors.New("table client closed early")) // errParamsRequired returned by a Client instance to indicate that required params is not defined errParamsRequired = xerrors.Wrap(errors.New("params required")) )