/
githubmirror
/
ydb-go-sdk
Обзор
Документация
Войти
/
githubmirror
/
ydb-go-sdk
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
internal/value/errors.go
10 строк
491 B
Timofey Koolin
add err ErrIssue1501BadUUID
17 окт 2024, 11:51
17 окт 2024, 11:51
4557315
Код
Авторство
О чём код?
package value import "errors" var ( ErrCannotCast = errors.New("cast failed") errDestinationTypeIsNotAPointer = errors.New("destination type is not a pointer") errNilDestination = errors.New("destination is nil") ErrIssue1501BadUUID = errors.New("ydb: uuid storage format was broken in go SDK. Now it fixed. And you should select variant for work: typed uuid (good) or use old format with explicit wrapper for read old data") //nolint:lll )