コード例 #1
0
ファイル: secondary_index.go プロジェクト: prataprc/indexing
func n1qlError(client *qclient.GsiClient, err error) errors.Error {
	return errors.NewError(err, client.DescribeError(err))
}
コード例 #2
0
ファイル: secondary_index.go プロジェクト: jchris/indexing
func n1qlError(client *qclient.GsiClient, err error) errors.Error {
	if err.Error() == c.ErrScanTimedOut.Error() {
		return errors.NewCbIndexScanTimeoutError(err)
	}
	return errors.NewError(err, client.DescribeError(err))
}