SYMBOL INDEX (1703 symbols across 106 files) FILE: block.go type chColumn (line 13) | type chColumn struct type block (line 18) | type block struct method reset (line 32) | func (block *block) reset() { method read (line 39) | func (block *block) read(ch *conn) error { method readColumns (line 64) | func (block *block) readColumns(ch *conn) error { method readColumnsData (line 79) | func (block *block) readColumnsData(ch *conn, needValidateData bool, c... method reorderColumns (line 100) | func (block *block) reorderColumns(columns []column.ColumnBasic) ([]co... method nextColumn (line 127) | func (block *block) nextColumn(ch *conn) (chColumn, error) { method writeHeader (line 148) | func (block *block) writeHeader(ch *conn, numRows int) error { method writeColumnsBuffer (line 166) | func (block *block) writeColumnsBuffer(ch *conn, columns ...column.Col... function newBlock (line 26) | func newBlock() *block { function findColumn (line 118) | func findColumn(columns []column.ColumnBasic, name []byte) (int, column.... type blockInfo (line 200) | type blockInfo struct method read (line 208) | func (info *blockInfo) read(r *readerwriter.Reader) error { method write (line 228) | func (info *blockInfo) write(w *readerwriter.Writer) { FILE: block_test.go function TestBlockReadError (line 14) | func TestBlockReadError(t *testing.T) { FILE: chconn.go constant connStatusUninitialized (line 21) | connStatusUninitialized = iota constant connStatusConnecting (line 22) | connStatusConnecting constant connStatusClosed (line 23) | connStatusClosed constant connStatusIdle (line 24) | connStatusIdle constant connStatusBusy (line 25) | connStatusBusy constant clientHello (line 30) | clientHello = 0 constant clientQuery (line 33) | clientQuery = 1 constant clientData (line 35) | clientData = 2 constant clientPing (line 37) | clientPing = 4 constant serverHello (line 42) | serverHello = 0 constant serverData (line 44) | serverData = 1 constant serverException (line 46) | serverException = 2 constant serverProgress (line 48) | serverProgress = 3 constant serverPong (line 50) | serverPong = 4 constant serverEndOfStream (line 52) | serverEndOfStream = 5 constant serverProfileInfo (line 54) | serverProfileInfo = 6 constant serverTotals (line 56) | serverTotals = 7 constant serverExtremes (line 58) | serverExtremes = 8 constant serverTableColumns (line 60) | serverTableColumns = 11 constant serverPartUUIDs (line 63) | serverPartUUIDs = 12 constant serverReadTaskRequest (line 66) | serverReadTaskRequest = 13 constant serverProfileEvents (line 68) | serverProfileEvents = 14 constant dbmsVersionMajor (line 72) | dbmsVersionMajor = 1 constant dbmsVersionMinor (line 73) | dbmsVersionMinor = 0 constant dbmsVersionPatch (line 74) | dbmsVersionPatch = 0 constant dbmsVersionRevision (line 75) | dbmsVersionRevision = 54460 type queryProcessingStage (line 78) | type queryProcessingStage constant queryProcessingStageComplete (line 83) | queryProcessingStageComplete queryProcessingStage = 2 type DialFunc (line 87) | type DialFunc type LookupFunc (line 90) | type LookupFunc type ReaderFunc (line 93) | type ReaderFunc type WriterFunc (line 97) | type WriterFunc type Conn (line 100) | type Conn interface type writeFlusher (line 163) | type writeFlusher interface type conn (line 168) | type conn struct method sendAddendum (line 387) | func (ch *conn) sendAddendum() { method flushCompress (line 393) | func (ch *conn) flushCompress() error { method RawConn (line 400) | func (ch *conn) RawConn() net.Conn { method hello (line 405) | func (ch *conn) hello() error { method IsClosed (line 430) | func (ch *conn) IsClosed() bool { method IsBusy (line 435) | func (ch *conn) IsBusy() bool { method lock (line 440) | func (ch *conn) lock() error { method unlock (line 453) | func (ch *conn) unlock() { method sendQueryWithOption (line 463) | func (ch *conn) sendQueryWithOption( method sendData (line 514) | func (ch *conn) sendData(block *block, numRows int) error { method sendEmptyBlock (line 529) | func (ch *conn) sendEmptyBlock() error { method Close (line 534) | func (ch *conn) Close() error { method readTableColumn (line 543) | func (ch *conn) readTableColumn() { method receiveAndProcessData (line 548) | func (ch *conn) receiveAndProcessData(onProgress func(*Progress)) (int... method Exec (line 627) | func (ch *conn) Exec(ctx context.Context, query string) error { method ExecWithOption (line 631) | func (ch *conn) ExecWithOption( function Connect (line 193) | func Connect(ctx context.Context, connString string) (Conn, error) { function ConnectConfig (line 209) | func ConnectConfig(octx context.Context, config *Config) (c Conn, err er... function expandWithIPs (line 278) | func expandWithIPs(ctx context.Context, lookupFn LookupFunc, fallbacks [... function connect (line 312) | func connect(ctx context.Context, config *Config, fallbackConfig *Fallba... type QueryOptions (line 617) | type QueryOptions struct FILE: chconn_test.go function TestConnect (line 16) | func TestConnect(t *testing.T) { function TestConnectError (line 35) | func TestConnectError(t *testing.T) { function TestEndOfStream (line 107) | func TestEndOfStream(t *testing.T) { function TestException (line 127) | func TestException(t *testing.T) { function TestTlsPreferConnect (line 144) | func TestTlsPreferConnect(t *testing.T) { function TestConnectConfigRequiresConnConfigFromParseConfig (line 167) | func TestConnectConfigRequiresConnConfigFromParseConfig(t *testing.T) { function TestLockError (line 177) | func TestLockError(t *testing.T) { function TestUnlockError (line 200) | func TestUnlockError(t *testing.T) { function TestExecError (line 214) | func TestExecError(t *testing.T) { function TestExecCtxError (line 246) | func TestExecCtxError(t *testing.T) { function TestReceivePackError (line 277) | func TestReceivePackError(t *testing.T) { FILE: chpool/common_test.go function waitForReleaseToComplete (line 17) | func waitForReleaseToComplete() { type execer (line 21) | type execer interface function testExec (line 25) | func testExec(t *testing.T, db execer) { type selecter (line 30) | type selecter interface function testSelect (line 34) | func testSelect(t *testing.T, db selecter) { function assertConfigsEqual (line 52) | func assertConfigsEqual(t *testing.T, expected, actual *Config, testName... function assertConnConfigsEqual (line 76) | func assertConnConfigsEqual(t *testing.T, expected, actual *chconn.Confi... FILE: chpool/conn.go type Conn (line 13) | type Conn interface type conn (line 43) | type conn struct method Release (line 50) | func (c *conn) Release() { method Hijack (line 98) | func (c *conn) Hijack() chconn.Conn { method ExecWithOption (line 112) | func (c *conn) ExecWithOption( method Ping (line 120) | func (c *conn) Ping(ctx context.Context) error { method SelectWithOption (line 124) | func (c *conn) SelectWithOption( method InsertWithOption (line 140) | func (c *conn) InsertWithOption(ctx context.Context, query string, que... method InsertStreamWithOption (line 143) | func (c *conn) InsertStreamWithOption(ctx context.Context, query strin... method Conn (line 154) | func (c *conn) Conn() chconn.Conn { method connResource (line 158) | func (c *conn) connResource() *connResource { FILE: chpool/insert_stmt.go type insertStmt (line 9) | type insertStmt struct method Flush (line 14) | func (s *insertStmt) Flush(ctx context.Context) error { method Close (line 22) | func (s *insertStmt) Close() { FILE: chpool/pool.go type connResource (line 27) | type connResource struct method getConn (line 32) | func (cr *connResource) getConn(p *pool, res *puddle.Resource[*connRes... type Pool (line 47) | type Pool interface type pool (line 120) | type pool struct method Close (line 411) | func (p *pool) Close() { method isExpired (line 418) | func (p *pool) isExpired(res *puddle.Resource[*connResource]) bool { method triggerHealthCheck (line 433) | func (p *pool) triggerHealthCheck() { method backgroundHealthCheck (line 445) | func (p *pool) backgroundHealthCheck() { method checkHealth (line 460) | func (p *pool) checkHealth() { method checkConnsHealth (line 484) | func (p *pool) checkConnsHealth() bool { method checkMinConns (line 509) | func (p *pool) checkMinConns() error { method createIdleResources (line 520) | func (p *pool) createIdleResources(targetResources int) error { method Acquire (line 547) | func (p *pool) Acquire(ctx context.Context) (Conn, error) { method AcquireFunc (line 575) | func (p *pool) AcquireFunc(ctx context.Context, f func(Conn) error) er... method AcquireAllIdle (line 587) | func (p *pool) AcquireAllIdle(ctx context.Context) []Conn { method Reset (line 607) | func (p *pool) Reset() { method Config (line 612) | func (p *pool) Config() *Config { return p.config.Copy() } method Stat (line 615) | func (p *pool) Stat() *Stat { method Exec (line 624) | func (p *pool) Exec(ctx context.Context, query string) error { method ExecWithOption (line 628) | func (p *pool) ExecWithOption( method Select (line 647) | func (p *pool) Select(ctx context.Context, query string, columns ...co... method SelectWithOption (line 651) | func (p *pool) SelectWithOption( method Insert (line 675) | func (p *pool) Insert(ctx context.Context, query string, columns ...co... method InsertWithOption (line 679) | func (p *pool) InsertWithOption(ctx context.Context, query string, que... method InsertStream (line 695) | func (p *pool) InsertStream(ctx context.Context, query string) (chconn... method InsertStreamWithOption (line 699) | func (p *pool) InsertStreamWithOption(ctx context.Context, query strin... method Ping (line 720) | func (p *pool) Ping(ctx context.Context) error { type Config (line 146) | type Config struct method Copy (line 195) | func (c *Config) Copy() *Config { method ConnString (line 203) | func (c *Config) ConnString() string { return c.ConnConfig.ConnString() } function New (line 206) | func New(connString string) (Pool, error) { function NewWithConfig (line 216) | func NewWithConfig(config *Config) (Pool, error) { function ParseConfig (line 313) | func ParseConfig(connString string) (*Config, error) { FILE: chpool/pool_test.go function TestNew (line 19) | func TestNew(t *testing.T) { function TestNewWithConfig (line 28) | func TestNewWithConfig(t *testing.T) { function TestParseConfigExtractsPoolArguments (line 39) | func TestParseConfigExtractsPoolArguments(t *testing.T) { function TestConnectConfigRequiresConnConfigFromParseConfig (line 61) | func TestConnectConfigRequiresConnConfigFromParseConfig(t *testing.T) { function TestConfigCopyReturnsEqualConfig (line 71) | func TestConfigCopyReturnsEqualConfig(t *testing.T) { function TestConfigCopyCanBeUsedToNew (line 81) | func TestConfigCopyCanBeUsedToNew(t *testing.T) { function TestPoolAcquireAndConnRelease (line 93) | func TestPoolAcquireAndConnRelease(t *testing.T) { function TestPoolAcquireAndConnHijack (line 105) | func TestPoolAcquireAndConnHijack(t *testing.T) { function TestPoolAcquireFunc (line 134) | func TestPoolAcquireFunc(t *testing.T) { function TestPoolAcquireFuncReturnsFnError (line 147) | func TestPoolAcquireFuncReturnsFnError(t *testing.T) { function TestPoolBeforeConnect (line 160) | func TestPoolBeforeConnect(t *testing.T) { function TestPoolAfterConnect (line 178) | func TestPoolAfterConnect(t *testing.T) { function TestPoolBeforeAcquire (line 199) | func TestPoolBeforeAcquire(t *testing.T) { function TestPoolAfterRelease (line 240) | func TestPoolAfterRelease(t *testing.T) { function TestPoolAcquireAllIdle (line 270) | func TestPoolAcquireAllIdle(t *testing.T) { function TestPoolReset (line 298) | func TestPoolReset(t *testing.T) { function TestConnReleaseChecksMaxConnLifetime (line 323) | func TestConnReleaseChecksMaxConnLifetime(t *testing.T) { function TestConnReleaseClosesBusyConn (line 347) | func TestConnReleaseClosesBusyConn(t *testing.T) { function TestPoolBackgroundChecksMaxConnLifetime (line 375) | func TestPoolBackgroundChecksMaxConnLifetime(t *testing.T) { function TestPoolBackgroundChecksMaxConnIdleTime (line 399) | func TestPoolBackgroundChecksMaxConnIdleTime(t *testing.T) { function TestPoolBackgroundChecksMinConns (line 431) | func TestPoolBackgroundChecksMinConns(t *testing.T) { function TestPoolExec (line 465) | func TestPoolExec(t *testing.T) { function TestPoolExecError (line 475) | func TestPoolExecError(t *testing.T) { function TestPoolSelect (line 491) | func TestPoolSelect(t *testing.T) { function TestPoolSelectError (line 536) | func TestPoolSelectError(t *testing.T) { function TestPoolAcquireSelectError (line 562) | func TestPoolAcquireSelectError(t *testing.T) { function TestPoolInsert (line 582) | func TestPoolInsert(t *testing.T) { function TestPoolInsertError (line 623) | func TestPoolInsertError(t *testing.T) { function TestPoolInsertStream (line 647) | func TestPoolInsertStream(t *testing.T) { function TestConnReleaseClosesConnInFailedTransaction (line 694) | func TestConnReleaseClosesConnInFailedTransaction(t *testing.T) { function TestConnReleaseDestroysClosedConn (line 722) | func TestConnReleaseDestroysClosedConn(t *testing.T) { function TestConnPoolQueryConcurrentLoad (line 753) | func TestConnPoolQueryConcurrentLoad(t *testing.T) { function TestParseConfigError (line 775) | func TestParseConfigError(t *testing.T) { function TestNewParseError (line 833) | func TestNewParseError(t *testing.T) { function TestNewError (line 841) | func TestNewError(t *testing.T) { function TestIdempotentPoolClose (line 863) | func TestIdempotentPoolClose(t *testing.T) { function TestConnectEagerlyReachesMinPoolSize (line 874) | func TestConnectEagerlyReachesMinPoolSize(t *testing.T) { FILE: chpool/select_stmt.go type selectStmt (line 7) | type selectStmt struct method Next (line 12) | func (s *selectStmt) Next() bool { method Close (line 28) | func (s *selectStmt) Close() { FILE: chpool/stat.go type Stat (line 10) | type Stat struct method AcquireCount (line 18) | func (s *Stat) AcquireCount() int64 { method AcquireDuration (line 24) | func (s *Stat) AcquireDuration() time.Duration { method AcquiredConns (line 29) | func (s *Stat) AcquiredConns() int32 { method CanceledAcquireCount (line 35) | func (s *Stat) CanceledAcquireCount() int64 { method ConstructingConns (line 41) | func (s *Stat) ConstructingConns() int32 { method EmptyAcquireCount (line 48) | func (s *Stat) EmptyAcquireCount() int64 { method IdleConns (line 53) | func (s *Stat) IdleConns() int32 { method MaxConns (line 58) | func (s *Stat) MaxConns() int32 { method TotalConns (line 65) | func (s *Stat) TotalConns() int32 { method NewConnsCount (line 70) | func (s *Stat) NewConnsCount() int64 { method MaxLifetimeDestroyCount (line 76) | func (s *Stat) MaxLifetimeDestroyCount() int64 { method MaxIdleDestroyCount (line 82) | func (s *Stat) MaxIdleDestroyCount() int64 { FILE: client_info.go type ClientInfo (line 13) | type ClientInfo struct method write (line 32) | func (c *ClientInfo) write(ch *conn) { method fillOSUserHostNameAndVersionInfo (line 77) | func (c *ClientInfo) fillOSUserHostNameAndVersionInfo() { FILE: column/array.go type Array (line 4) | type Array struct function NewArray (line 10) | func NewArray[T any](dataColumn Column[T]) *Array[T] { method Data (line 24) | func (c *Array[T]) Data() [][]T { method Read (line 39) | func (c *Array[T]) Read(value [][]T) [][]T { method Row (line 54) | func (c *Array[T]) Row(row int) []T { method Append (line 65) | func (c *Array[T]) Append(v ...[]T) { method AppendItem (line 80) | func (c *Array[T]) AppendItem(v ...T) { method Array (line 85) | func (c *Array[T]) Array() *Array2[T] { method getColumnData (line 89) | func (c *Array[T]) getColumnData() []T { method elem (line 96) | func (c *Array[T]) elem(arrayLevel int) ColumnBasic { FILE: column/array2.go type Array2 (line 4) | type Array2 struct function NewArray2 (line 9) | func NewArray2[T any](array *Array[T]) *Array2[T] { method Data (line 20) | func (c *Array2[T]) Data() [][][]T { method Read (line 29) | func (c *Array2[T]) Read(value [][][]T) [][][]T { method Row (line 44) | func (c *Array2[T]) Row(row int) [][]T { method Append (line 58) | func (c *Array2[T]) Append(v ...[][]T) { method elem (line 65) | func (c *Array2[T]) elem(arrayLevel int) ColumnBasic { FILE: column/array2_nullable.go type Array2Nullable (line 6) | type Array2Nullable struct function NewArray2Nullable (line 13) | func NewArray2Nullable[T comparable](dataColumn *ArrayNullable[T]) *Arra... method DataP (line 30) | func (c *Array2Nullable[T]) DataP() [][][]*T { method ReadP (line 42) | func (c *Array2Nullable[T]) ReadP(value [][][]*T) [][][]*T { method RowP (line 54) | func (c *Array2Nullable[T]) RowP(row int) [][]*T { method AppendP (line 65) | func (c *Array2Nullable[T]) AppendP(v ...[][]*T) { method ReadRaw (line 73) | func (c *Array2Nullable[T]) ReadRaw(num int, r *readerwriter.Reader) err... method Array (line 83) | func (c *Array2Nullable[T]) Array() *Array3Nullable[T] { method getColumnData (line 87) | func (c *Array2Nullable[T]) getColumnData() [][]*T { method elem (line 94) | func (c *Array2Nullable[T]) elem(arrayLevel int) ColumnBasic { FILE: column/array3.go type Array3 (line 4) | type Array3 struct function NewArray3 (line 9) | func NewArray3[T any](array *Array2[T]) *Array3[T] { method Data (line 20) | func (c *Array3[T]) Data() [][][][]T { method Read (line 29) | func (c *Array3[T]) Read(value [][][][]T) [][][][]T { method Row (line 44) | func (c *Array3[T]) Row(row int) [][][]T { method Append (line 58) | func (c *Array3[T]) Append(v ...[][][]T) { method Array (line 66) | func (c *Array2[T]) Array() *Array3[T] { method elem (line 70) | func (c *Array3[T]) elem(arrayLevel int) ColumnBasic { FILE: column/array3_nullable.go type Array3Nullable (line 6) | type Array3Nullable struct function NewArray3Nullable (line 13) | func NewArray3Nullable[T comparable](dataColumn *Array2Nullable[T]) *Arr... method DataP (line 30) | func (c *Array3Nullable[T]) DataP() [][][][]*T { method ReadP (line 42) | func (c *Array3Nullable[T]) ReadP(value [][][][]*T) [][][][]*T { method RowP (line 54) | func (c *Array3Nullable[T]) RowP(row int) [][][]*T { method AppendP (line 65) | func (c *Array3Nullable[T]) AppendP(v ...[][][]*T) { method ReadRaw (line 73) | func (c *Array3Nullable[T]) ReadRaw(num int, r *readerwriter.Reader) err... method getColumnData (line 82) | func (c *Array3Nullable[T]) getColumnData() [][][]*T { method elem (line 89) | func (c *Array3Nullable[T]) elem(arrayLevel int) ColumnBasic { FILE: column/array_base.go type ArrayBase (line 16) | type ArrayBase struct method AppendLen (line 34) | func (c *ArrayBase) AppendLen(v int) { method NumRow (line 40) | func (c *ArrayBase) NumRow() int { method Array (line 45) | func (c *ArrayBase) Array() *ArrayBase { method Reset (line 55) | func (c *ArrayBase) Reset() { method Offsets (line 63) | func (c *ArrayBase) Offsets() []uint64 { method TotalRows (line 68) | func (c *ArrayBase) TotalRows() int { method SetWriteBufferSize (line 78) | func (c *ArrayBase) SetWriteBufferSize(row int) { method ReadRaw (line 84) | func (c *ArrayBase) ReadRaw(num int, r *readerwriter.Reader) error { method HeaderReader (line 103) | func (c *ArrayBase) HeaderReader(r *readerwriter.Reader, readColumn bo... method Column (line 118) | func (c *ArrayBase) Column() ColumnBasic { method Validate (line 122) | func (c *ArrayBase) Validate() error { method ColumnType (line 149) | func (c *ArrayBase) ColumnType() string { method WriteTo (line 155) | func (c *ArrayBase) WriteTo(w io.Writer) (int64, error) { method HeaderWriter (line 167) | func (c *ArrayBase) HeaderWriter(w *readerwriter.Writer) { method elem (line 171) | func (c *ArrayBase) elem(arrayLevel int) ColumnBasic { function NewArrayBase (line 25) | func NewArrayBase(dataColumn ColumnBasic) *ArrayBase { FILE: column/array_nullable.go type ArrayNullable (line 6) | type ArrayNullable struct function NewArrayNullable (line 13) | func NewArrayNullable[T comparable](dataColumn NullableColumn[T]) *Array... method DataP (line 30) | func (c *ArrayNullable[T]) DataP() [][]*T { method ReadP (line 42) | func (c *ArrayNullable[T]) ReadP(value [][]*T) [][]*T { method RowP (line 54) | func (c *ArrayNullable[T]) RowP(row int) []*T { method AppendP (line 65) | func (c *ArrayNullable[T]) AppendP(v ...[]*T) { method AppendItemP (line 80) | func (c *ArrayNullable[T]) AppendItemP(v ...*T) { method ArrayOf (line 85) | func (c *ArrayNullable[T]) ArrayOf() *Array2Nullable[T] { method ReadRaw (line 90) | func (c *ArrayNullable[T]) ReadRaw(num int, r *readerwriter.Reader) error { method getColumnData (line 99) | func (c *ArrayNullable[T]) getColumnData() []*T { method elem (line 106) | func (c *ArrayNullable[T]) elem(arrayLevel int) ColumnBasic { FILE: column/base.go type Base (line 11) | type Base struct function New (line 20) | func New[T comparable]() *Base[T] { method Data (line 31) | func (c *Base[T]) Data() []T { method Read (line 37) | func (c *Base[T]) Read(value []T) []T { method Row (line 43) | func (c *Base[T]) Row(row int) T { method Append (line 49) | func (c *Base[T]) Append(v ...T) { method NumRow (line 55) | func (c *Base[T]) NumRow() int { method Array (line 60) | func (c *Base[T]) Array() *Array[T] { method Nullable (line 65) | func (c *Base[T]) Nullable() *Nullable[T] { method LC (line 70) | func (c *Base[T]) LC() *LowCardinality[T] { method LowCardinality (line 75) | func (c *Base[T]) LowCardinality() *LowCardinality[T] { method appendEmpty (line 81) | func (c *Base[T]) appendEmpty() { method Reset (line 92) | func (c *Base[T]) Reset() { method SetWriteBufferSize (line 100) | func (c *Base[T]) SetWriteBufferSize(row int) { method ReadRaw (line 107) | func (c *Base[T]) ReadRaw(num int, r *readerwriter.Reader) error { method readBuffer (line 120) | func (c *Base[T]) readBuffer() error { method HeaderReader (line 132) | func (c *Base[T]) HeaderReader(r *readerwriter.Reader, readColumn bool, ... method HeaderWriter (line 139) | func (c *Base[T]) HeaderWriter(w *readerwriter.Writer) { method Elem (line 142) | func (c *Base[T]) Elem(arrayLevel int, nullable, lc bool) ColumnBasic { FILE: column/base_big_cpu.go method readyBufferHook (line 7) | func (c *Base[T]) readyBufferHook() { function reverseBuffer (line 13) | func reverseBuffer(s []byte) { type slice (line 25) | type slice struct method WriteTo (line 31) | func (c *Base[T]) WriteTo(w io.Writer) (int64, error) { FILE: column/base_little_cpu.go method readyBufferHook (line 11) | func (c *Base[T]) readyBufferHook() { type slice (line 20) | type slice struct method WriteTo (line 26) | func (c *Base[T]) WriteTo(w io.Writer) (int64, error) { FILE: column/base_test.go function TestBool (line 20) | func TestBool(t *testing.T) { function TestBoolUint8 (line 28) | func TestBoolUint8(t *testing.T) { function TestUint8 (line 36) | func TestUint8(t *testing.T) { function TestUint16 (line 44) | func TestUint16(t *testing.T) { function TestUint32 (line 52) | func TestUint32(t *testing.T) { function TestUint64 (line 60) | func TestUint64(t *testing.T) { function TestUint128 (line 68) | func TestUint128(t *testing.T) { function TestUint256 (line 78) | func TestUint256(t *testing.T) { function TestInt8 (line 89) | func TestInt8(t *testing.T) { function TestInt16 (line 97) | func TestInt16(t *testing.T) { function TestInt32 (line 105) | func TestInt32(t *testing.T) { function TestInt64 (line 113) | func TestInt64(t *testing.T) { function TestInt128 (line 121) | func TestInt128(t *testing.T) { function TestInt256 (line 131) | func TestInt256(t *testing.T) { function TestFixedString (line 141) | func TestFixedString(t *testing.T) { function TestFloat32 (line 149) | func TestFloat32(t *testing.T) { function TestFloat64 (line 157) | func TestFloat64(t *testing.T) { function TestDecimal32 (line 165) | func TestDecimal32(t *testing.T) { function TestDecimal64 (line 172) | func TestDecimal64(t *testing.T) { function TestDecimal128 (line 180) | func TestDecimal128(t *testing.T) { function TestDecimal256 (line 188) | func TestDecimal256(t *testing.T) { function TestIPv4 (line 196) | func TestIPv4(t *testing.T) { function TestIPv6 (line 206) | func TestIPv6(t *testing.T) { function TestUUID (line 216) | func TestUUID(t *testing.T) { function testColumn (line 224) | func testColumn[T comparable]( function TestEmptyCollection (line 622) | func TestEmptyCollection(t *testing.T) { FILE: column/base_validate.go method Validate (line 45) | func (c *Base[T]) Validate() error { method checkEnum8 (line 87) | func (c *Base[T]) checkEnum8(chType []byte) (bool, error) { method checkEnum16 (line 99) | func (c *Base[T]) checkEnum16(chType []byte) (bool, error) { method checkDateTime (line 111) | func (c *Base[T]) checkDateTime(chType []byte) (bool, error) { method checkDateTime64 (line 129) | func (c *Base[T]) checkDateTime64(chType []byte) (bool, error) { method checkFixedString (line 149) | func (c *Base[T]) checkFixedString(chType []byte) (bool, error) { method checkDecimal (line 165) | func (c *Base[T]) checkDecimal(chType []byte) (bool, error) { method ColumnType (line 204) | func (c *Base[T]) ColumnType() string { FILE: column/bench_test.go function BenchmarkTestChconnSelect100MUint64 (line 11) | func BenchmarkTestChconnSelect100MUint64(b *testing.B) { function BenchmarkTestChconnSelect1MString (line 35) | func BenchmarkTestChconnSelect1MString(b *testing.B) { function BenchmarkTestChconnInsert10M (line 61) | func BenchmarkTestChconnInsert10M(b *testing.B) { FILE: column/column_helper.go type ColumnBasic (line 11) | type ColumnBasic interface type Column (line 27) | type Column interface type NullableColumn (line 35) | type NullableColumn interface type column (line 43) | type column struct method readColumn (line 52) | func (c *column) readColumn(readColumn bool, revision uint64) error { method Name (line 99) | func (c *column) Name() []byte { method Type (line 104) | func (c *column) Type() []byte { method SetName (line 109) | func (c *column) SetName(v []byte) { method SetType (line 114) | func (c *column) SetType(v []byte) { FILE: column/date.go type DateType (line 10) | type DateType interface type Date (line 27) | type Date struct function NewDate (line 47) | func NewDate[T DateType[T]]() *Date[T] { method SetLocation (line 58) | func (c *Date[T]) SetLocation(loc *time.Location) *Date[T] { method Location (line 66) | func (c *Date[T]) Location() *time.Location { method SetPrecision (line 82) | func (c *Date[T]) SetPrecision(precision int) *Date[T] { method Data (line 88) | func (c *Date[T]) Data() []time.Time { method Read (line 97) | func (c *Date[T]) Read(value []time.Time) []time.Time { method Row (line 112) | func (c *Date[T]) Row(row int) time.Time { method Append (line 118) | func (c *Date[T]) Append(v ...time.Time) { method Array (line 127) | func (c *Date[T]) Array() *Array[time.Time] { method Nullable (line 132) | func (c *Date[T]) Nullable() *Nullable[time.Time] { method LC (line 137) | func (c *Date[T]) LC() *LowCardinality[time.Time] { method LowCardinality (line 142) | func (c *Date[T]) LowCardinality() *LowCardinality[time.Time] { method Elem (line 146) | func (c *Date[T]) Elem(arrayLevel int, nullable, lc bool) ColumnBasic { FILE: column/date_test.go function TestDate (line 17) | func TestDate(t *testing.T) { function TestDate32 (line 26) | func TestDate32(t *testing.T) { function TestDateTime (line 36) | func TestDateTime(t *testing.T) { function TestDateTimeTimezone (line 45) | func TestDateTimeTimezone(t *testing.T) { function TestDateTime64 (line 59) | func TestDateTime64(t *testing.T) { function testDateColumn (line 73) | func testDateColumn[T column.DateType[T]]( function TestInvalidNegativeTimes (line 507) | func TestInvalidNegativeTimes(t *testing.T) { FILE: column/error_test.go function TestInsertColumnLowCardinalityError (line 19) | func TestInsertColumnLowCardinalityError(t *testing.T) { function TestSelectReadLCError (line 100) | func TestSelectReadLCError(t *testing.T) { function TestInsertColumnArrayError (line 198) | func TestInsertColumnArrayError(t *testing.T) { function TestSelectReadArrayError (line 259) | func TestSelectReadArrayError(t *testing.T) { function TestInsertColumnArrayNullable (line 327) | func TestInsertColumnArrayNullable(t *testing.T) { function TestSelectReadArrayNullableError (line 393) | func TestSelectReadArrayNullableError(t *testing.T) { function TestSelectReadNullableError (line 446) | func TestSelectReadNullableError(t *testing.T) { function TestInsertColumnArray2Error (line 494) | func TestInsertColumnArray2Error(t *testing.T) { function TestSelectReadArray2Error (line 555) | func TestSelectReadArray2Error(t *testing.T) { function TestInsertColumnArray3Error (line 622) | func TestInsertColumnArray3Error(t *testing.T) { function TestSelectReadArray3Error (line 683) | func TestSelectReadArray3Error(t *testing.T) { function TestInsertColumnTupleError (line 751) | func TestInsertColumnTupleError(t *testing.T) { function TestSelectReadTupleError (line 813) | func TestSelectReadTupleError(t *testing.T) { function TestInsertColumnMapError (line 891) | func TestInsertColumnMapError(t *testing.T) { function TestSelectReadMapError (line 963) | func TestSelectReadMapError(t *testing.T) { function TestInvalidType (line 1059) | func TestInvalidType(t *testing.T) { function TestMapInvalidColumnNumber (line 1300) | func TestMapInvalidColumnNumber(t *testing.T) { function TestFixedStringInvalidType (line 1307) | func TestFixedStringInvalidType(t *testing.T) { function TestEnum8InvalidType (line 1314) | func TestEnum8InvalidType(t *testing.T) { function TestEnum16InvalidType (line 1320) | func TestEnum16InvalidType(t *testing.T) { function TestDecimalInvalidType (line 1328) | func TestDecimalInvalidType(t *testing.T) { function TestInvalidDate (line 1347) | func TestInvalidDate(t *testing.T) { function TestInvalidSimpleAggregateFunction (line 1355) | func TestInvalidSimpleAggregateFunction(t *testing.T) { FILE: column/errors.go type ErrInvalidType (line 7) | type ErrInvalidType struct method Error (line 12) | func (e ErrInvalidType) Error() string { FILE: column/helper_test.go type readErrorHelper (line 7) | type readErrorHelper struct method Read (line 14) | func (r *readErrorHelper) Read(p []byte) (int, error) { type writerErrorHelper (line 22) | type writerErrorHelper struct method Write (line 29) | func (w *writerErrorHelper) Write(p []byte) (int, error) { FILE: column/lc.go constant hasAdditionalKeysBit (line 17) | hasAdditionalKeysBit = 1 << 9 constant needUpdateDictionary (line 20) | needUpdateDictionary = 1 << 10 constant serializationType (line 22) | serializationType = hasAdditionalKeysBit | needUpdateDictionary type LowCardinality (line 26) | type LowCardinality struct function NewLowCardinality (line 41) | func NewLowCardinality[T comparable](dictColumn Column[T]) *LowCardinali... function NewLC (line 46) | func NewLC[T comparable](dictColumn Column[T]) *LowCardinality[T] { method Data (line 57) | func (c *LowCardinality[T]) Data() []T { method Read (line 66) | func (c *LowCardinality[T]) Read(value []T) []T { method Row (line 75) | func (c *LowCardinality[T]) Row(row int) T { method Append (line 80) | func (c *LowCardinality[T]) Append(v ...T) { method Dicts (line 95) | func (c *LowCardinality[T]) Dicts() []T { method Keys (line 101) | func (c *LowCardinality[T]) Keys() []int { method NumRow (line 106) | func (c *LowCardinality[T]) NumRow() int { method Array (line 111) | func (c *LowCardinality[T]) Array() *Array[T] { method Reset (line 121) | func (c *LowCardinality[T]) Reset() { method SetWriteBufferSize (line 133) | func (c *LowCardinality[T]) SetWriteBufferSize(row int) { method ReadRaw (line 140) | func (c *LowCardinality[T]) ReadRaw(num int, r *readerwriter.Reader) err... method HeaderReader (line 190) | func (c *LowCardinality[T]) HeaderReader(r *readerwriter.Reader, readCol... method ColumnType (line 210) | func (c *LowCardinality[T]) ColumnType() string { method Validate (line 217) | func (c *LowCardinality[T]) Validate() error { method WriteTo (line 244) | func (c *LowCardinality[T]) WriteTo(w io.Writer) (int64, error) { method HeaderWriter (line 295) | func (c *LowCardinality[T]) HeaderWriter(w *readerwriter.Writer) { function getLCIndicate (line 300) | func getLCIndicate(intType int) indicesColumnI { method writeUint64 (line 315) | func (c *LowCardinality[T]) writeUint64(w io.Writer, v uint64) (int, err... method elem (line 327) | func (c *LowCardinality[T]) elem(arrayLevel int) ColumnBasic { FILE: column/lc_indices.go type indicesColumnI (line 10) | type indicesColumnI interface type indicatedTypes (line 18) | type indicatedTypes interface type indicesColumn (line 22) | type indicesColumn struct function newIndicesColumn (line 26) | func newIndicesColumn[T indicatedTypes]() *indicesColumn[T] { method readInt (line 36) | func (c *indicesColumn[T]) readInt(value *[]int) { method appendInts (line 44) | func (c *indicesColumn[T]) appendInts(values []int) { FILE: column/lc_nullable.go type LowCardinalityNullable (line 4) | type LowCardinalityNullable struct function NewLowCardinalityNullable (line 9) | func NewLowCardinalityNullable[T comparable](dictColumn Column[T]) *LowC... function NewLCNullable (line 14) | func NewLCNullable[T comparable](dictColumn Column[T]) *LowCardinalityNu... method DataP (line 30) | func (c *LowCardinalityNullable[T]) DataP() []*T { method ReadP (line 44) | func (c *LowCardinalityNullable[T]) ReadP(value []*T) []*T { method RowP (line 58) | func (c *LowCardinalityNullable[T]) RowP(row int) *T { method Append (line 67) | func (c *LowCardinalityNullable[T]) Append(v ...T) { method AppendNil (line 82) | func (c *LowCardinalityNullable[T]) AppendNil() { method AppendP (line 90) | func (c *LowCardinalityNullable[T]) AppendP(v ...*T) { method Array (line 109) | func (c *LowCardinalityNullable[T]) Array() *ArrayNullable[T] { method Reset (line 119) | func (c *LowCardinalityNullable[T]) Reset() { method elem (line 125) | func (c *LowCardinalityNullable[T]) elem(arrayLevel int) ColumnBasic { FILE: column/lc_test.go function TestLcIndicator16 (line 15) | func TestLcIndicator16(t *testing.T) { function TestLcIndicator32 (line 86) | func TestLcIndicator32(t *testing.T) { FILE: column/map.go type Map (line 5) | type Map struct function NewMap (line 12) | func NewMap[K comparable, V any]( method Data (line 31) | func (c *Map[K, V]) Data() []map[K]V { method Read (line 52) | func (c *Map[K, V]) Read(value []map[K]V) []map[K]V { method Row (line 58) | func (c *Map[K, V]) Row(row int) map[K]V { method Append (line 75) | func (c *Map[K, V]) Append(v map[K]V) { method getKeyColumnData (line 83) | func (c *Map[K, V]) getKeyColumnData() []K { method getValueColumnData (line 89) | func (c *Map[K, V]) getValueColumnData() []V { method KeyColumn (line 97) | func (c *Map[K, V]) KeyColumn() Column[K] { method ValueColumn (line 102) | func (c *Map[K, V]) ValueColumn() Column[V] { FILE: column/map_base.go type MapBase (line 17) | type MapBase struct method Each (line 54) | func (c *MapBase) Each(f func(start, end uint64) bool) { method AppendLen (line 69) | func (c *MapBase) AppendLen(v int) { method NumRow (line 75) | func (c *MapBase) NumRow() int { method Reset (line 85) | func (c *MapBase) Reset() { method Offsets (line 93) | func (c *MapBase) Offsets() []uint64 { method TotalRows (line 98) | func (c *MapBase) TotalRows() int { method SetWriteBufferSize (line 108) | func (c *MapBase) SetWriteBufferSize(row int) { method ReadRaw (line 115) | func (c *MapBase) ReadRaw(num int, r *readerwriter.Reader) error { method KeyColumn (line 138) | func (c *MapBase) KeyColumn() ColumnBasic { method ValueColumn (line 143) | func (c *MapBase) ValueColumn() ColumnBasic { method HeaderReader (line 149) | func (c *MapBase) HeaderReader(r *readerwriter.Reader, readColumn bool... method Validate (line 170) | func (c *MapBase) Validate() error { method ColumnType (line 206) | func (c *MapBase) ColumnType() string { method WriteTo (line 214) | func (c *MapBase) WriteTo(w io.Writer) (int64, error) { method HeaderWriter (line 236) | func (c *MapBase) HeaderWriter(w *readerwriter.Writer) { function NewMapBase (line 27) | func NewMapBase( FILE: column/map_nullable.go type MapNullable (line 7) | type MapNullable struct function NewMapNullable (line 15) | func NewMapNullable[K comparable, V any]( method DataP (line 33) | func (c *MapNullable[T, V]) DataP() []map[T]*V { method ReadP (line 50) | func (c *MapNullable[T, V]) ReadP(value []map[T]*V) []map[T]*V { method RowP (line 56) | func (c *MapNullable[T, V]) RowP(row int) map[T]*V { method AppendP (line 70) | func (c *MapNullable[K, V]) AppendP(v map[K]*V) { method ReadRaw (line 79) | func (c *MapNullable[K, V]) ReadRaw(num int, r *readerwriter.Reader) err... method ValueColumn (line 92) | func (c *MapNullable[K, V]) ValueColumn() NullableColumn[V] { FILE: column/map_test.go function TestMapUint8 (line 15) | func TestMapUint8(t *testing.T) { function TestMapUint16 (line 29) | func TestMapUint16(t *testing.T) { function TestMapUint32 (line 43) | func TestMapUint32(t *testing.T) { function TestMapUint64 (line 57) | func TestMapUint64(t *testing.T) { function TestMapInt8 (line 70) | func TestMapInt8(t *testing.T) { function TestMapInt16 (line 84) | func TestMapInt16(t *testing.T) { function TestMapInt32 (line 98) | func TestMapInt32(t *testing.T) { function TestMapInt64 (line 112) | func TestMapInt64(t *testing.T) { function TestMapFloat32 (line 126) | func TestMapFloat32(t *testing.T) { function TestMapFloat64 (line 140) | func TestMapFloat64(t *testing.T) { function testMapColumn (line 154) | func testMapColumn[V comparable]( function TestMapEmptyResult (line 556) | func TestMapEmptyResult(t *testing.T) { function TestMapEmpty (line 589) | func TestMapEmpty(t *testing.T) { FILE: column/nested.go function NewNested (line 6) | func NewNested(columns ...ColumnBasic) *ArrayBase { FILE: column/nested_test.go function TestNestedNoFlattened (line 16) | func TestNestedNoFlattened(t *testing.T) { FILE: column/nullable.go type appendEmptyInterface (line 13) | type appendEmptyInterface interface type Nullable (line 18) | type Nullable struct function NewNullable (line 27) | func NewNullable[T comparable](dataColumn Column[T]) *Nullable[T] { method Data (line 36) | func (c *Nullable[T]) Data() []T { method DataP (line 44) | func (c *Nullable[T]) DataP() []*T { method Read (line 59) | func (c *Nullable[T]) Read(value []T) []T { method ReadP (line 67) | func (c *Nullable[T]) ReadP(value []*T) []*T { method Row (line 75) | func (c *Nullable[T]) Row(i int) T { method RowP (line 83) | func (c *Nullable[T]) RowP(row int) *T { method ReadNil (line 92) | func (c *Nullable[T]) ReadNil(value []bool) []bool { method DataNil (line 97) | func (c *Nullable[T]) DataNil() []bool { method RowIsNil (line 102) | func (c *Nullable[T]) RowIsNil(row int) bool { method Append (line 107) | func (c *Nullable[T]) Append(v ...T) { method AppendP (line 115) | func (c *Nullable[T]) AppendP(v ...*T) { method AppendNil (line 126) | func (c *Nullable[T]) AppendNil() { method NumRow (line 132) | func (c *Nullable[T]) NumRow() int { method Array (line 137) | func (c *Nullable[T]) Array() *ArrayNullable[T] { method LC (line 142) | func (c *Nullable[T]) LC() *LowCardinalityNullable[T] { method LowCardinality (line 147) | func (c *Nullable[T]) LowCardinality() *LowCardinalityNullable[T] { method Reset (line 157) | func (c *Nullable[T]) Reset() { method SetWriteBufferSize (line 167) | func (c *Nullable[T]) SetWriteBufferSize(row int) { method ReadRaw (line 175) | func (c *Nullable[T]) ReadRaw(num int, r *readerwriter.Reader) error { method readBuffer (line 187) | func (c *Nullable[T]) readBuffer() error { method HeaderReader (line 202) | func (c *Nullable[T]) HeaderReader(r *readerwriter.Reader, readColumn bo... method Validate (line 211) | func (c *Nullable[T]) Validate() error { method ColumnType (line 227) | func (c *Nullable[T]) ColumnType() string { method WriteTo (line 233) | func (c *Nullable[T]) WriteTo(w io.Writer) (int64, error) { method HeaderWriter (line 245) | func (c *Nullable[T]) HeaderWriter(w *readerwriter.Writer) { method elem (line 248) | func (c *Nullable[T]) elem(arrayLevel int, lc bool) ColumnBasic { FILE: column/nullable_test.go function TestNullableAsNormal (line 15) | func TestNullableAsNormal(t *testing.T) { FILE: column/point.go function NewPoint (line 5) | func NewPoint() *Tuple2[types.Point, float64, float64] { FILE: column/size.go constant Uint8Size (line 5) | Uint8Size = 1 constant Uint16Size (line 7) | Uint16Size = 2 constant Uint32Size (line 9) | Uint32Size = 4 constant Uint64Size (line 11) | Uint64Size = 8 constant Uint128Size (line 13) | Uint128Size = 16 constant Uint256Size (line 15) | Uint256Size = 32 constant Int8Size (line 17) | Int8Size = 1 constant Int16Size (line 19) | Int16Size = 2 constant Int32Size (line 21) | Int32Size = 4 constant Int64Size (line 23) | Int64Size = 8 constant Int128Size (line 25) | Int128Size = 16 constant Int256Size (line 27) | Int256Size = 32 constant Float32Size (line 29) | Float32Size = 4 constant Float64Size (line 31) | Float64Size = 8 constant DateSize (line 33) | DateSize = 2 constant Date32Size (line 35) | Date32Size = 4 constant DatetimeSize (line 37) | DatetimeSize = 4 constant Datetime64Size (line 39) | Datetime64Size = 8 constant IPv4Size (line 41) | IPv4Size = 4 constant IPv6Size (line 43) | IPv6Size = 16 constant Decimal32Size (line 45) | Decimal32Size = 4 constant Decimal64Size (line 47) | Decimal64Size = 8 constant Decimal128Size (line 49) | Decimal128Size = 16 constant Decimal256Size (line 51) | Decimal256Size = 32 constant ArraylenSize (line 53) | ArraylenSize = 8 constant MaplenSize (line 55) | MaplenSize = 8 constant UUIDSize (line 57) | UUIDSize = 16 FILE: column/string.go type String (line 4) | type String struct method Elem (line 13) | func (c *String) Elem(arrayLevel int, nullable, lc bool) ColumnBasic { function NewString (line 9) | func NewString() *String { FILE: column/string_base.go type stringPos (line 11) | type stringPos struct type StringBase (line 17) | type StringBase struct function NewStringBase (line 26) | func NewStringBase[T ~string]() *StringBase[T] { method Data (line 31) | func (c *StringBase[T]) Data() []T { method DataBytes (line 40) | func (c *StringBase[T]) DataBytes() [][]byte { method Read (line 45) | func (c *StringBase[T]) Read(value []T) []T { method ReadBytes (line 61) | func (c *StringBase[T]) ReadBytes(value [][]byte) [][]byte { method Row (line 79) | func (c *StringBase[T]) Row(row int) T { method RowBytes (line 86) | func (c *StringBase[T]) RowBytes(row int) []byte { method Each (line 91) | func (c *StringBase[T]) Each(f func(i int, b []byte) bool) { method appendLen (line 99) | func (c *StringBase[T]) appendLen(x int) { method Append (line 110) | func (c *StringBase[T]) Append(v ...T) { method AppendBytes (line 119) | func (c *StringBase[T]) AppendBytes(v ...[]byte) { method NumRow (line 128) | func (c *StringBase[T]) NumRow() int { method Array (line 133) | func (c *StringBase[T]) Array() *Array[T] { method Nullable (line 138) | func (c *StringBase[T]) Nullable() *Nullable[T] { method LC (line 143) | func (c *StringBase[T]) LC() *LowCardinality[T] { method LowCardinality (line 148) | func (c *StringBase[T]) LowCardinality() *LowCardinality[T] { method Reset (line 157) | func (c *StringBase[T]) Reset() { method SetWriteBufferSize (line 167) | func (c *StringBase[T]) SetWriteBufferSize(b int) { method ReadRaw (line 174) | func (c *StringBase[T]) ReadRaw(num int, r *readerwriter.Reader) error { method HeaderReader (line 200) | func (c *StringBase[T]) HeaderReader(r *readerwriter.Reader, readColumn ... method Validate (line 205) | func (c *StringBase[T]) Validate() error { method ColumnType (line 215) | func (c *StringBase[T]) ColumnType() string { method WriteTo (line 221) | func (c *StringBase[T]) WriteTo(w io.Writer) (int64, error) { method HeaderWriter (line 228) | func (c *StringBase[T]) HeaderWriter(w *readerwriter.Writer) { method appendEmpty (line 231) | func (c *StringBase[T]) appendEmpty() { method Elem (line 236) | func (c *StringBase[T]) Elem(arrayLevel int, nullable, lc bool) ColumnBa... FILE: column/string_test.go function TestString (line 16) | func TestString(t *testing.T) { FILE: column/tuple.go type Tuple (line 16) | type Tuple struct method NumRow (line 36) | func (c *Tuple) NumRow() int { method Array (line 41) | func (c *Tuple) Array() *ArrayBase { method Reset (line 51) | func (c *Tuple) Reset() { method SetWriteBufferSize (line 60) | func (c *Tuple) SetWriteBufferSize(row int) { method ReadRaw (line 67) | func (c *Tuple) ReadRaw(num int, r *readerwriter.Reader) error { method HeaderReader (line 79) | func (c *Tuple) HeaderReader(r *readerwriter.Reader, readColumn bool, ... method Columns (line 97) | func (c *Tuple) Columns() []ColumnBasic { method Validate (line 101) | func (c *Tuple) Validate() error { method ColumnType (line 139) | func (c *Tuple) ColumnType() string { method WriteTo (line 149) | func (c *Tuple) WriteTo(w io.Writer) (int64, error) { method HeaderWriter (line 163) | func (c *Tuple) HeaderWriter(w *readerwriter.Writer) { method Elem (line 169) | func (c *Tuple) Elem(arrayLevel int) ColumnBasic { function NewTuple (line 26) | func NewTuple(columns ...ColumnBasic) *Tuple { FILE: column/tuple1.go type Tuple1 (line 4) | type Tuple1 struct function NewTuple1 (line 10) | func NewTuple1[T1 any]( function NewNested1 (line 26) | func NewNested1[T any]( method Data (line 35) | func (c *Tuple1[T]) Data() []T { method Read (line 40) | func (c *Tuple1[T]) Read(value []T) []T { method Row (line 46) | func (c *Tuple1[T]) Row(row int) T { method Append (line 51) | func (c *Tuple1[T]) Append(v ...T) { method Array (line 56) | func (c *Tuple1[T]) Array() *Array[T] { FILE: column/tuple2_gen.go type tuple2Value (line 7) | type tuple2Value struct type Tuple2 (line 13) | type Tuple2 struct function NewTuple2 (line 23) | func NewTuple2[T ~struct { function NewNested2 (line 45) | func NewNested2[T ~struct { method Data (line 59) | func (c *Tuple2[T, T1, T2]) Data() []T { method Read (line 71) | func (c *Tuple2[T, T1, T2]) Read(value []T) []T { method Row (line 89) | func (c *Tuple2[T, T1, T2]) Row(row int) T { method Append (line 97) | func (c *Tuple2[T, T1, T2]) Append(v ...T) { method Array (line 106) | func (c *Tuple2[T, T1, T2]) Array() *Array[T] { FILE: column/tuple3_gen.go type tuple3Value (line 7) | type tuple3Value struct type Tuple3 (line 14) | type Tuple3 struct function NewTuple3 (line 26) | func NewTuple3[T ~struct { function NewNested3 (line 52) | func NewNested3[T ~struct { method Data (line 69) | func (c *Tuple3[T, T1, T2, T3]) Data() []T { method Read (line 82) | func (c *Tuple3[T, T1, T2, T3]) Read(value []T) []T { method Row (line 101) | func (c *Tuple3[T, T1, T2, T3]) Row(row int) T { method Append (line 110) | func (c *Tuple3[T, T1, T2, T3]) Append(v ...T) { method Array (line 120) | func (c *Tuple3[T, T1, T2, T3]) Array() *Array[T] { FILE: column/tuple4_gen.go type tuple4Value (line 7) | type tuple4Value struct type Tuple4 (line 15) | type Tuple4 struct function NewTuple4 (line 29) | func NewTuple4[T ~struct { function NewNested4 (line 59) | func NewNested4[T ~struct { method Data (line 79) | func (c *Tuple4[T, T1, T2, T3, T4]) Data() []T { method Read (line 93) | func (c *Tuple4[T, T1, T2, T3, T4]) Read(value []T) []T { method Row (line 113) | func (c *Tuple4[T, T1, T2, T3, T4]) Row(row int) T { method Append (line 123) | func (c *Tuple4[T, T1, T2, T3, T4]) Append(v ...T) { method Array (line 134) | func (c *Tuple4[T, T1, T2, T3, T4]) Array() *Array[T] { FILE: column/tuple5_gen.go type tuple5Value (line 7) | type tuple5Value struct type Tuple5 (line 16) | type Tuple5 struct function NewTuple5 (line 32) | func NewTuple5[T ~struct { function NewNested5 (line 66) | func NewNested5[T ~struct { method Data (line 89) | func (c *Tuple5[T, T1, T2, T3, T4, T5]) Data() []T { method Read (line 104) | func (c *Tuple5[T, T1, T2, T3, T4, T5]) Read(value []T) []T { method Row (line 125) | func (c *Tuple5[T, T1, T2, T3, T4, T5]) Row(row int) T { method Append (line 136) | func (c *Tuple5[T, T1, T2, T3, T4, T5]) Append(v ...T) { method Array (line 148) | func (c *Tuple5[T, T1, T2, T3, T4, T5]) Array() *Array[T] { FILE: column/tuple_test.go function TestTuple (line 16) | func TestTuple(t *testing.T) { function TestTupleNoColumn (line 346) | func TestTupleNoColumn(t *testing.T) { function TestGeo (line 350) | func TestGeo(t *testing.T) { FILE: column/tuples_test.go function TestTuples (line 16) | func TestTuples(t *testing.T) { FILE: config.go constant defaultUsername (line 17) | defaultUsername = "default" constant defaultDatabase (line 18) | defaultDatabase = "default" constant defaultDBPort (line 19) | defaultDBPort = "9000" constant defaultClientName (line 20) | defaultClientName = "chx" type CompressMethod (line 23) | type CompressMethod constant CompressNone (line 27) | CompressNone CompressMethod = 0x00 constant CompressChecksum (line 28) | CompressChecksum CompressMethod = 0x02 constant CompressLZ4 (line 29) | CompressLZ4 CompressMethod = 0x82 constant CompressZSTD (line 30) | CompressZSTD CompressMethod = 0x90 type AfterConnectFunc (line 35) | type AfterConnectFunc type ValidateConnectFunc (line 40) | type ValidateConnectFunc type Config (line 44) | type Config struct method Copy (line 83) | func (c *Config) Copy() *Config { method ConnString (line 110) | func (c *Config) ConnString() string { return c.connString } type FallbackConfig (line 114) | type FallbackConfig struct function NetworkAddress (line 122) | func NetworkAddress(host string, port uint16) (network, address string) { function ParseConfig (line 183) | func ParseConfig(connString string) (*Config, error) { function defaultSettings (line 313) | func defaultSettings() map[string]string { function mergeSettings (line 326) | func mergeSettings(settingSets ...map[string]string) map[string]string { function parseEnvSettings (line 338) | func parseEnvSettings() map[string]string { function parseURLSettings (line 365) | func parseURLSettings(connString string) (map[string]string, error) { function isIPOnly (line 429) | func isIPOnly(host string) bool { function parseDSNSettings (line 435) | func parseDSNSettings(s string) (map[string]string, error) { function configTLS (line 512) | func configTLS(settings map[string]string, thisHost string) ([]*tls.Conf... function parsePort (line 622) | func parsePort(s string) (uint16, error) { function makeDefaultDialer (line 633) | func makeDefaultDialer() *net.Dialer { function makeDefaultResolver (line 637) | func makeDefaultResolver() *net.Resolver { function parseConnectTimeoutSetting (line 641) | func parseConnectTimeoutSetting(s string) (time.Duration, error) { function makeConnectTimeoutDialFunc (line 652) | func makeConnectTimeoutDialFunc(timeout time.Duration) DialFunc { FILE: config_test.go function TestParseConfig (line 544) | func TestParseConfig(t *testing.T) { function TestParseConfigDSNWithTrailingEmptyEqualDoesNotPanic (line 557) | func TestParseConfigDSNWithTrailingEmptyEqualDoesNotPanic(t *testing.T) { function TestParseConfigDSNLeadingEqual (line 562) | func TestParseConfigDSNLeadingEqual(t *testing.T) { function TestParseConfigDSNTrailingBackslash (line 567) | func TestParseConfigDSNTrailingBackslash(t *testing.T) { function TestConfigCopyReturnsEqualConfig (line 573) | func TestConfigCopyReturnsEqualConfig(t *testing.T) { function TestConfigCopyOriginalConfigDidNotChange (line 582) | func TestConfigCopyOriginalConfigDidNotChange(t *testing.T) { function TestConfigCopyCanBeUsedToConnect (line 597) | func TestConfigCopyCanBeUsedToConnect(t *testing.T) { function assertConfigsEqual (line 609) | func assertConfigsEqual(t *testing.T, expected, actual *Config, testName... function TestParseConfigEnv (line 677) | func TestParseConfigEnv(t *testing.T) { function TestParseConfigError (line 758) | func TestParseConfigError(t *testing.T) { FILE: doc_test.go function Example (line 13) | func Example() { FILE: errors.go type ChError (line 43) | type ChError struct method read (line 51) | func (e *ChError) read(r *readerwriter.Reader) error { method Unwrap (line 86) | func (e *ChError) Unwrap() error { method Error (line 91) | func (e *ChError) Error() string { function preferContextOverNetTimeoutError (line 100) | func preferContextOverNetTimeoutError(ctx context.Context, err error) er... type errTimeout (line 118) | type errTimeout struct method Error (line 123) | func (e *errTimeout) Error() string { method Unwrap (line 130) | func (e *errTimeout) Unwrap() error { type contextAlreadyDoneError (line 134) | type contextAlreadyDoneError struct method Error (line 138) | func (e *contextAlreadyDoneError) Error() string { method Unwrap (line 142) | func (e *contextAlreadyDoneError) Unwrap() error { function newContextAlreadyDoneError (line 147) | func newContextAlreadyDoneError(ctx context.Context) (err error) { type unexpectedPacket (line 153) | type unexpectedPacket struct method Error (line 158) | func (e *unexpectedPacket) Error() string { type notImplementedPacket (line 162) | type notImplementedPacket struct method Error (line 166) | func (e *notImplementedPacket) Error() string { type connectError (line 170) | type connectError struct method Error (line 176) | func (e *connectError) Error() string { method Unwrap (line 185) | func (e *connectError) Unwrap() error { type connLockError (line 189) | type connLockError struct method Error (line 193) | func (e *connLockError) Error() string { type parseConfigError (line 197) | type parseConfigError struct method Error (line 203) | func (e *parseConfigError) Error() string { method Unwrap (line 211) | func (e *parseConfigError) Unwrap() error { type readError (line 215) | type readError struct method Error (line 220) | func (e *readError) Error() string { method Unwrap (line 224) | func (e *readError) Unwrap() error { type writeError (line 228) | type writeError struct method Error (line 233) | func (e *writeError) Error() string { method Unwrap (line 237) | func (e *writeError) Unwrap() error { function redactPW (line 241) | func redactPW(connString string) string { function redactURL (line 256) | func redactURL(u *url.URL) string { type InsertError (line 267) | type InsertError struct method Error (line 273) | func (e *InsertError) Error() string { method Unwrap (line 278) | func (e *InsertError) Unwrap() error { type ColumnNumberReadError (line 283) | type ColumnNumberReadError struct method Error (line 288) | func (e *ColumnNumberReadError) Error() string { type ColumnNumberWriteError (line 293) | type ColumnNumberWriteError struct method Error (line 298) | func (e *ColumnNumberWriteError) Error() string { type NumberWriteError (line 303) | type NumberWriteError struct method Error (line 310) | func (e *NumberWriteError) Error() string { type ColumnNotFoundError (line 315) | type ColumnNotFoundError struct method Error (line 319) | func (e *ColumnNotFoundError) Error() string { FILE: errors_ch_code.go type ChErrorType (line 3) | type ChErrorType constant ChErrorOk (line 6) | ChErrorOk ChErrorType = 0 constant ChErrorUnsupportedMethod (line 7) | ChErrorUnsupportedMethod ChErrorType = 1 constant ChErrorUnsupportedParameter (line 8) | ChErrorUnsupportedParameter ChErrorType = 2 constant ChErrorUnexpectedEndOfFile (line 9) | ChErrorUnexpectedEndOfFile ChErrorType = 3 constant ChErrorExpectedEndOfFile (line 10) | ChErrorExpectedEndOfFile ChErrorType = 4 constant ChErrorCannotParseText (line 11) | ChErrorCannotParseText ChErrorType = 6 constant ChErrorIncorrectNumberOfColumns (line 12) | ChErrorIncorrectNumberOfColumns ChErrorType = 7 constant ChErrorThereIsNoColumn (line 13) | ChErrorThereIsNoColumn ChErrorType = 8 constant ChErrorSizesOfColumnsDoesntMatch (line 14) | ChErrorSizesOfColumnsDoesntMatch ChErrorType = 9 constant ChErrorNotFoundColumnInBlock (line 15) | ChErrorNotFoundColumnInBlock ChErrorType = 10 constant ChErrorPositionOutOfBound (line 16) | ChErrorPositionOutOfBound ChErrorType = 11 constant ChErrorParameterOutOfBound (line 17) | ChErrorParameterOutOfBound ChErrorType = 12 constant ChErrorSizesOfColumnsInTupleDoesntMatch (line 18) | ChErrorSizesOfColumnsInTupleDoesntMatch ChErrorType = 13 constant ChErrorDuplicateColumn (line 19) | ChErrorDuplicateColumn ChErrorType = 15 constant ChErrorNoSuchColumnInTable (line 20) | ChErrorNoSuchColumnInTable ChErrorType = 16 constant ChErrorDelimiterInStringLiteralDoesntMatch (line 21) | ChErrorDelimiterInStringLiteralDoesntMatch ChErrorType = 17 constant ChErrorCannotInsertElementIntoConstantColumn (line 22) | ChErrorCannotInsertElementIntoConstantColumn ChErrorType = 18 constant ChErrorSizeOfFixedStringDoesntMatch (line 23) | ChErrorSizeOfFixedStringDoesntMatch ChErrorType = 19 constant ChErrorNumberOfColumnsDoesntMatch (line 24) | ChErrorNumberOfColumnsDoesntMatch ChErrorType = 20 constant ChErrorCannotReadAllDataFromTabSeparatedInput (line 25) | ChErrorCannotReadAllDataFromTabSeparatedInput ChErrorType = 21 constant ChErrorCannotParseAllValueFromTabSeparatedInput (line 26) | ChErrorCannotParseAllValueFromTabSeparatedInput ChErrorType = 22 constant ChErrorCannotReadFromIstream (line 27) | ChErrorCannotReadFromIstream ChErrorType = 23 constant ChErrorCannotWriteToOstream (line 28) | ChErrorCannotWriteToOstream ChErrorType = 24 constant ChErrorCannotParseEscapeSequence (line 29) | ChErrorCannotParseEscapeSequence ChErrorType = 25 constant ChErrorCannotParseQuotedString (line 30) | ChErrorCannotParseQuotedString ChErrorType = 26 constant ChErrorCannotParseInputAssertionFailed (line 31) | ChErrorCannotParseInputAssertionFailed ChErrorType = 27 constant ChErrorCannotPrintFloatOrDoubleNumber (line 32) | ChErrorCannotPrintFloatOrDoubleNumber ChErrorType = 28 constant ChErrorCannotPrintInteger (line 33) | ChErrorCannotPrintInteger ChErrorType = 29 constant ChErrorCannotReadSizeOfCompressedChunk (line 34) | ChErrorCannotReadSizeOfCompressedChunk ChErrorType = 30 constant ChErrorCannotReadCompressedChunk (line 35) | ChErrorCannotReadCompressedChunk ChErrorType = 31 constant ChErrorAttemptToReadAfterEOF (line 36) | ChErrorAttemptToReadAfterEOF ChErrorType = 32 constant ChErrorCannotReadAllData (line 37) | ChErrorCannotReadAllData ChErrorType = 33 constant ChErrorTooManyArgumentsForFunction (line 38) | ChErrorTooManyArgumentsForFunction ChErrorType = 34 constant ChErrorTooFewArgumentsForFunction (line 39) | ChErrorTooFewArgumentsForFunction ChErrorType = 35 constant ChErrorBadArguments (line 40) | ChErrorBadArguments ChErrorType = 36 constant ChErrorUnknownElementInAst (line 41) | ChErrorUnknownElementInAst ChErrorType = 37 constant ChErrorCannotParseDate (line 42) | ChErrorCannotParseDate ChErrorType = 38 constant ChErrorTooLargeSizeCompressed (line 43) | ChErrorTooLargeSizeCompressed ChErrorType = 39 constant ChErrorChecksumDoesntMatch (line 44) | ChErrorChecksumDoesntMatch ChErrorType = 40 constant ChErrorCannotParseDatetime (line 45) | ChErrorCannotParseDatetime ChErrorType = 41 constant ChErrorNumberOfArgumentsDoesntMatch (line 46) | ChErrorNumberOfArgumentsDoesntMatch ChErrorType = 42 constant ChErrorIllegalTypeOfArgument (line 47) | ChErrorIllegalTypeOfArgument ChErrorType = 43 constant ChErrorIllegalColumn (line 48) | ChErrorIllegalColumn ChErrorType = 44 constant ChErrorIllegalNumberOfResultColumns (line 49) | ChErrorIllegalNumberOfResultColumns ChErrorType = 45 constant ChErrorUnknownFunction (line 50) | ChErrorUnknownFunction ChErrorType = 46 constant ChErrorUnknownIdentifier (line 51) | ChErrorUnknownIdentifier ChErrorType = 47 constant ChErrorNotImplemented (line 52) | ChErrorNotImplemented ChErrorType = 48 constant ChErrorLogicalError (line 53) | ChErrorLogicalError ChErrorType = 49 constant ChErrorUnknownType (line 54) | ChErrorUnknownType ChErrorType = 50 constant ChErrorEmptyListOfColumnsQueried (line 55) | ChErrorEmptyListOfColumnsQueried ChErrorType = 51 constant ChErrorColumnQueriedMoreThanOnce (line 56) | ChErrorColumnQueriedMoreThanOnce ChErrorType = 52 constant ChErrorTypeMismatch (line 57) | ChErrorTypeMismatch ChErrorType = 53 constant ChErrorStorageDoesntAllowParameters (line 58) | ChErrorStorageDoesntAllowParameters ChErrorType = 54 constant ChErrorStorageRequiresParameter (line 59) | ChErrorStorageRequiresParameter ChErrorType = 55 constant ChErrorUnknownStorage (line 60) | ChErrorUnknownStorage ChErrorType = 56 constant ChErrorTableAlreadyExists (line 61) | ChErrorTableAlreadyExists ChErrorType = 57 constant ChErrorTableMetadataAlreadyExists (line 62) | ChErrorTableMetadataAlreadyExists ChErrorType = 58 constant ChErrorIllegalTypeOfColumnForFilter (line 63) | ChErrorIllegalTypeOfColumnForFilter ChErrorType = 59 constant ChErrorUnknownTable (line 64) | ChErrorUnknownTable ChErrorType = 60 constant ChErrorOnlyFilterColumnInBlock (line 65) | ChErrorOnlyFilterColumnInBlock ChErrorType = 61 constant ChErrorSyntaxError (line 66) | ChErrorSyntaxError ChErrorType = 62 constant ChErrorUnknownAggregateFunction (line 67) | ChErrorUnknownAggregateFunction ChErrorType = 63 constant ChErrorCannotReadAggregateFunctionFromText (line 68) | ChErrorCannotReadAggregateFunctionFromText ChErrorType = 64 constant ChErrorCannotWriteAggregateFunctionAsText (line 69) | ChErrorCannotWriteAggregateFunctionAsText ChErrorType = 65 constant ChErrorNotAColumn (line 70) | ChErrorNotAColumn ChErrorType = 66 constant ChErrorIllegalKeyOfAggregation (line 71) | ChErrorIllegalKeyOfAggregation ChErrorType = 67 constant ChErrorCannotGetSizeOfField (line 72) | ChErrorCannotGetSizeOfField ChErrorType = 68 constant ChErrorArgumentOutOfBound (line 73) | ChErrorArgumentOutOfBound ChErrorType = 69 constant ChErrorCannotConvertType (line 74) | ChErrorCannotConvertType ChErrorType = 70 constant ChErrorCannotWriteAfterEndOfBuffer (line 75) | ChErrorCannotWriteAfterEndOfBuffer ChErrorType = 71 constant ChErrorCannotParseNumber (line 76) | ChErrorCannotParseNumber ChErrorType = 72 constant ChErrorUnknownFormat (line 77) | ChErrorUnknownFormat ChErrorType = 73 constant ChErrorCannotReadFromFileDescriptor (line 78) | ChErrorCannotReadFromFileDescriptor ChErrorType = 74 constant ChErrorCannotWriteToFileDescriptor (line 79) | ChErrorCannotWriteToFileDescriptor ChErrorType = 75 constant ChErrorCannotOpenFile (line 80) | ChErrorCannotOpenFile ChErrorType = 76 constant ChErrorCannotCloseFile (line 81) | ChErrorCannotCloseFile ChErrorType = 77 constant ChErrorUnknownTypeOfQuery (line 82) | ChErrorUnknownTypeOfQuery ChErrorType = 78 constant ChErrorIncorrectFileName (line 83) | ChErrorIncorrectFileName ChErrorType = 79 constant ChErrorIncorrectQuery (line 84) | ChErrorIncorrectQuery ChErrorType = 80 constant ChErrorUnknownDatabase (line 85) | ChErrorUnknownDatabase ChErrorType = 81 constant ChErrorDatabaseAlreadyExists (line 86) | ChErrorDatabaseAlreadyExists ChErrorType = 82 constant ChErrorDirectoryDoesntExist (line 87) | ChErrorDirectoryDoesntExist ChErrorType = 83 constant ChErrorDirectoryAlreadyExists (line 88) | ChErrorDirectoryAlreadyExists ChErrorType = 84 constant ChErrorFormatIsNotSuitableForInput (line 89) | ChErrorFormatIsNotSuitableForInput ChErrorType = 85 constant ChErrorReceivedErrorFromRemoteIoServer (line 90) | ChErrorReceivedErrorFromRemoteIoServer ChErrorType = 86 constant ChErrorCannotSeekThroughFile (line 91) | ChErrorCannotSeekThroughFile ChErrorType = 87 constant ChErrorCannotTruncateFile (line 92) | ChErrorCannotTruncateFile ChErrorType = 88 constant ChErrorUnknownCompressionMethod (line 93) | ChErrorUnknownCompressionMethod ChErrorType = 89 constant ChErrorEmptyListOfColumnsPassed (line 94) | ChErrorEmptyListOfColumnsPassed ChErrorType = 90 constant ChErrorSizesOfMarksFilesAreInconsistent (line 95) | ChErrorSizesOfMarksFilesAreInconsistent ChErrorType = 91 constant ChErrorEmptyDataPassed (line 96) | ChErrorEmptyDataPassed ChErrorType = 92 constant ChErrorUnknownAggregatedDataVariant (line 97) | ChErrorUnknownAggregatedDataVariant ChErrorType = 93 constant ChErrorCannotMergeDifferentAggregatedDataVariants (line 98) | ChErrorCannotMergeDifferentAggregatedDataVariants ChErrorType = 94 constant ChErrorCannotReadFromSocket (line 99) | ChErrorCannotReadFromSocket ChErrorType = 95 constant ChErrorCannotWriteToSocket (line 100) | ChErrorCannotWriteToSocket ChErrorType = 96 constant ChErrorCannotReadAllDataFromChunkedInput (line 101) | ChErrorCannotReadAllDataFromChunkedInput ChErrorType = 97 constant ChErrorCannotWriteToEmptyBlockOutputStream (line 102) | ChErrorCannotWriteToEmptyBlockOutputStream ChErrorType = 98 constant ChErrorUnknownPacketFromClient (line 103) | ChErrorUnknownPacketFromClient ChErrorType = 99 constant ChErrorUnknownPacketFromServer (line 104) | ChErrorUnknownPacketFromServer ChErrorType = 100 constant ChErrorUnexpectedPacketFromClient (line 105) | ChErrorUnexpectedPacketFromClient ChErrorType = 101 constant ChErrorUnexpectedPacketFromServer (line 106) | ChErrorUnexpectedPacketFromServer ChErrorType = 102 constant ChErrorReceivedDataForWrongQueryID (line 107) | ChErrorReceivedDataForWrongQueryID ChErrorType = 103 constant ChErrorTooSmallBufferSize (line 108) | ChErrorTooSmallBufferSize ChErrorType = 104 constant ChErrorCannotReadHistory (line 109) | ChErrorCannotReadHistory ChErrorType = 105 constant ChErrorCannotAppendHistory (line 110) | ChErrorCannotAppendHistory ChErrorType = 106 constant ChErrorFileDoesntExist (line 111) | ChErrorFileDoesntExist ChErrorType = 107 constant ChErrorNoDataToInsert (line 112) | ChErrorNoDataToInsert ChErrorType = 108 constant ChErrorCannotBlockSignal (line 113) | ChErrorCannotBlockSignal ChErrorType = 109 constant ChErrorCannotUnblockSignal (line 114) | ChErrorCannotUnblockSignal ChErrorType = 110 constant ChErrorCannotManipulateSigset (line 115) | ChErrorCannotManipulateSigset ChErrorType = 111 constant ChErrorCannotWaitForSignal (line 116) | ChErrorCannotWaitForSignal ChErrorType = 112 constant ChErrorThereIsNoSession (line 117) | ChErrorThereIsNoSession ChErrorType = 113 constant ChErrorCannotClockGettime (line 118) | ChErrorCannotClockGettime ChErrorType = 114 constant ChErrorUnknownSetting (line 119) | ChErrorUnknownSetting ChErrorType = 115 constant ChErrorThereIsNoDefaultValue (line 120) | ChErrorThereIsNoDefaultValue ChErrorType = 116 constant ChErrorIncorrectData (line 121) | ChErrorIncorrectData ChErrorType = 117 constant ChErrorEngineRequired (line 122) | ChErrorEngineRequired ChErrorType = 119 constant ChErrorCannotInsertValueOfDifferentSizeIntoTuple (line 123) | ChErrorCannotInsertValueOfDifferentSizeIntoTuple ChErrorType = 120 constant ChErrorUnsupportedJoinKeys (line 124) | ChErrorUnsupportedJoinKeys ChErrorType = 121 constant ChErrorIncompatibleColumns (line 125) | ChErrorIncompatibleColumns ChErrorType = 122 constant ChErrorUnknownTypeOfAstNode (line 126) | ChErrorUnknownTypeOfAstNode ChErrorType = 123 constant ChErrorIncorrectElementOfSet (line 127) | ChErrorIncorrectElementOfSet ChErrorType = 124 constant ChErrorIncorrectResultOfScalarSubquery (line 128) | ChErrorIncorrectResultOfScalarSubquery ChErrorType = 125 constant ChErrorCannotGetReturnType (line 129) | ChErrorCannotGetReturnType ChErrorType = 126 constant ChErrorIllegalIndex (line 130) | ChErrorIllegalIndex ChErrorType = 127 constant ChErrorTooLargeArraySize (line 131) | ChErrorTooLargeArraySize ChErrorType = 128 constant ChErrorFunctionIsSpecial (line 132) | ChErrorFunctionIsSpecial ChErrorType = 129 constant ChErrorCannotReadArrayFromText (line 133) | ChErrorCannotReadArrayFromText ChErrorType = 130 constant ChErrorTooLargeStringSize (line 134) | ChErrorTooLargeStringSize ChErrorType = 131 constant ChErrorAggregateFunctionDoesntAllowParameters (line 135) | ChErrorAggregateFunctionDoesntAllowParameters ChErrorType = 133 constant ChErrorParametersToAggregateFunctionsMustBeLiterals (line 136) | ChErrorParametersToAggregateFunctionsMustBeLiterals ChErrorType = 134 constant ChErrorZeroArrayOrTupleIndex (line 137) | ChErrorZeroArrayOrTupleIndex ChErrorType = 135 constant ChErrorUnknownElementInConfig (line 138) | ChErrorUnknownElementInConfig ChErrorType = 137 constant ChErrorExcessiveElementInConfig (line 139) | ChErrorExcessiveElementInConfig ChErrorType = 138 constant ChErrorNoElementsInConfig (line 140) | ChErrorNoElementsInConfig ChErrorType = 139 constant ChErrorAllRequestedColumnsAreMissing (line 141) | ChErrorAllRequestedColumnsAreMissing ChErrorType = 140 constant ChErrorSamplingNotSupported (line 142) | ChErrorSamplingNotSupported ChErrorType = 141 constant ChErrorNotFoundNode (line 143) | ChErrorNotFoundNode ChErrorType = 142 constant ChErrorFoundMoreThanOneNode (line 144) | ChErrorFoundMoreThanOneNode ChErrorType = 143 constant ChErrorFirstDateIsBiggerThanLastDate (line 145) | ChErrorFirstDateIsBiggerThanLastDate ChErrorType = 144 constant ChErrorUnknownOverflowMode (line 146) | ChErrorUnknownOverflowMode ChErrorType = 145 constant ChErrorQuerySectionDoesntMakeSense (line 147) | ChErrorQuerySectionDoesntMakeSense ChErrorType = 146 constant ChErrorNotFoundFunctionElementForAggregate (line 148) | ChErrorNotFoundFunctionElementForAggregate ChErrorType = 147 constant ChErrorNotFoundRelationElementForCondition (line 149) | ChErrorNotFoundRelationElementForCondition ChErrorType = 148 constant ChErrorNotFoundRhsElementForCondition (line 150) | ChErrorNotFoundRhsElementForCondition ChErrorType = 149 constant ChErrorEmptyListOfAttributesPassed (line 151) | ChErrorEmptyListOfAttributesPassed ChErrorType = 150 constant ChErrorIndexOfColumnInSortClauseIsOutOfRange (line 152) | ChErrorIndexOfColumnInSortClauseIsOutOfRange ChErrorType = 151 constant ChErrorUnknownDirectionOfSorting (line 153) | ChErrorUnknownDirectionOfSorting ChErrorType = 152 constant ChErrorIllegalDivision (line 154) | ChErrorIllegalDivision ChErrorType = 153 constant ChErrorAggregateFunctionNotApplicable (line 155) | ChErrorAggregateFunctionNotApplicable ChErrorType = 154 constant ChErrorUnknownRelation (line 156) | ChErrorUnknownRelation ChErrorType = 155 constant ChErrorDictionariesWasNotLoaded (line 157) | ChErrorDictionariesWasNotLoaded ChErrorType = 156 constant ChErrorIllegalOverflowMode (line 158) | ChErrorIllegalOverflowMode ChErrorType = 157 constant ChErrorTooManyRows (line 159) | ChErrorTooManyRows ChErrorType = 158 constant ChErrorTimeoutExceeded (line 160) | ChErrorTimeoutExceeded ChErrorType = 159 constant ChErrorTooSlow (line 161) | ChErrorTooSlow ChErrorType = 160 constant ChErrorTooManyColumns (line 162) | ChErrorTooManyColumns ChErrorType = 161 constant ChErrorTooDeepSubqueries (line 163) | ChErrorTooDeepSubqueries ChErrorType = 162 constant ChErrorTooDeepPipeline (line 164) | ChErrorTooDeepPipeline ChErrorType = 163 constant ChErrorReadonly (line 165) | ChErrorReadonly ChErrorType = 164 constant ChErrorTooManyTemporaryColumns (line 166) | ChErrorTooManyTemporaryColumns ChErrorType = 165 constant ChErrorTooManyTemporaryNonConstColumns (line 167) | ChErrorTooManyTemporaryNonConstColumns ChErrorType = 166 constant ChErrorTooDeepAst (line 168) | ChErrorTooDeepAst ChErrorType = 167 constant ChErrorTooBigAst (line 169) | ChErrorTooBigAst ChErrorType = 168 constant ChErrorBadTypeOfField (line 170) | ChErrorBadTypeOfField ChErrorType = 169 constant ChErrorBadGet (line 171) | ChErrorBadGet ChErrorType = 170 constant ChErrorCannotCreateDirectory (line 172) | ChErrorCannotCreateDirectory ChErrorType = 172 constant ChErrorCannotAllocateMemory (line 173) | ChErrorCannotAllocateMemory ChErrorType = 173 constant ChErrorCyclicAliases (line 174) | ChErrorCyclicAliases ChErrorType = 174 constant ChErrorChunkNotFound (line 175) | ChErrorChunkNotFound ChErrorType = 176 constant ChErrorDuplicateChunkName (line 176) | ChErrorDuplicateChunkName ChErrorType = 177 constant ChErrorMultipleAliasesForExpression (line 177) | ChErrorMultipleAliasesForExpression ChErrorType = 178 constant ChErrorMultipleExpressionsForAlias (line 178) | ChErrorMultipleExpressionsForAlias ChErrorType = 179 constant ChErrorThereIsNoProfile (line 179) | ChErrorThereIsNoProfile ChErrorType = 180 constant ChErrorIllegalFinal (line 180) | ChErrorIllegalFinal ChErrorType = 181 constant ChErrorIllegalPrewhere (line 181) | ChErrorIllegalPrewhere ChErrorType = 182 constant ChErrorUnexpectedExpression (line 182) | ChErrorUnexpectedExpression ChErrorType = 183 constant ChErrorIllegalAggregation (line 183) | ChErrorIllegalAggregation ChErrorType = 184 constant ChErrorUnsupportedMyisamBlockType (line 184) | ChErrorUnsupportedMyisamBlockType ChErrorType = 185 constant ChErrorUnsupportedCollationLocale (line 185) | ChErrorUnsupportedCollationLocale ChErrorType = 186 constant ChErrorCollationComparisonFailed (line 186) | ChErrorCollationComparisonFailed ChErrorType = 187 constant ChErrorUnknownAction (line 187) | ChErrorUnknownAction ChErrorType = 188 constant ChErrorTableMustNotBeCreatedManually (line 188) | ChErrorTableMustNotBeCreatedManually ChErrorType = 189 constant ChErrorSizesOfArraysDoesntMatch (line 189) | ChErrorSizesOfArraysDoesntMatch ChErrorType = 190 constant ChErrorSetSizeLimitExceeded (line 190) | ChErrorSetSizeLimitExceeded ChErrorType = 191 constant ChErrorUnknownUser (line 191) | ChErrorUnknownUser ChErrorType = 192 constant ChErrorWrongPassword (line 192) | ChErrorWrongPassword ChErrorType = 193 constant ChErrorRequiredPassword (line 193) | ChErrorRequiredPassword ChErrorType = 194 constant ChErrorIPAddressNotAllowed (line 194) | ChErrorIPAddressNotAllowed ChErrorType = 195 constant ChErrorUnknownAddressPatternType (line 195) | ChErrorUnknownAddressPatternType ChErrorType = 196 constant ChErrorServerRevisionIsTooOld (line 196) | ChErrorServerRevisionIsTooOld ChErrorType = 197 constant ChErrorDNSError (line 197) | ChErrorDNSError ChErrorType = 198 constant ChErrorUnknownQuota (line 198) | ChErrorUnknownQuota ChErrorType = 199 constant ChErrorQuotaDoesntAllowKeys (line 199) | ChErrorQuotaDoesntAllowKeys ChErrorType = 200 constant ChErrorQuotaExpired (line 200) | ChErrorQuotaExpired ChErrorType = 201 constant ChErrorTooManySimultaneousQueries (line 201) | ChErrorTooManySimultaneousQueries ChErrorType = 202 constant ChErrorNoFreeConnection (line 202) | ChErrorNoFreeConnection ChErrorType = 203 constant ChErrorCannotFsync (line 203) | ChErrorCannotFsync ChErrorType = 204 constant ChErrorNestedTypeTooDeep (line 204) | ChErrorNestedTypeTooDeep ChErrorType = 205 constant ChErrorAliasRequired (line 205) | ChErrorAliasRequired ChErrorType = 206 constant ChErrorAmbiguousIdentifier (line 206) | ChErrorAmbiguousIdentifier ChErrorType = 207 constant ChErrorEmptyNestedTable (line 207) | ChErrorEmptyNestedTable ChErrorType = 208 constant ChErrorSocketTimeout (line 208) | ChErrorSocketTimeout ChErrorType = 209 constant ChErrorNetworkError (line 209) | ChErrorNetworkError ChErrorType = 210 constant ChErrorEmptyQuery (line 210) | ChErrorEmptyQuery ChErrorType = 211 constant ChErrorUnknownLoadBalancing (line 211) | ChErrorUnknownLoadBalancing ChErrorType = 212 constant ChErrorUnknownTotalsMode (line 212) | ChErrorUnknownTotalsMode ChErrorType = 213 constant ChErrorCannotStatvfs (line 213) | ChErrorCannotStatvfs ChErrorType = 214 constant ChErrorNotAnAggregate (line 214) | ChErrorNotAnAggregate ChErrorType = 215 constant ChErrorQueryWithSameIDIsAlreadyRunning (line 215) | ChErrorQueryWithSameIDIsAlreadyRunning ChErrorType = 216 constant ChErrorClientHasConnectedToWrongPort (line 216) | ChErrorClientHasConnectedToWrongPort ChErrorType = 217 constant ChErrorTableIsDropped (line 217) | ChErrorTableIsDropped ChErrorType = 218 constant ChErrorDatabaseNotEmpty (line 218) | ChErrorDatabaseNotEmpty ChErrorType = 219 constant ChErrorDuplicateInterserverIoEndpoint (line 219) | ChErrorDuplicateInterserverIoEndpoint ChErrorType = 220 constant ChErrorNoSuchInterserverIoEndpoint (line 220) | ChErrorNoSuchInterserverIoEndpoint ChErrorType = 221 constant ChErrorAddingReplicaToNonEmptyTable (line 221) | ChErrorAddingReplicaToNonEmptyTable ChErrorType = 222 constant ChErrorUnexpectedAstStructure (line 222) | ChErrorUnexpectedAstStructure ChErrorType = 223 constant ChErrorReplicaIsAlreadyActive (line 223) | ChErrorReplicaIsAlreadyActive ChErrorType = 224 constant ChErrorNoZookeeper (line 224) | ChErrorNoZookeeper ChErrorType = 225 constant ChErrorNoFileInDataPart (line 225) | ChErrorNoFileInDataPart ChErrorType = 226 constant ChErrorUnexpectedFileInDataPart (line 226) | ChErrorUnexpectedFileInDataPart ChErrorType = 227 constant ChErrorBadSizeOfFileInDataPart (line 227) | ChErrorBadSizeOfFileInDataPart ChErrorType = 228 constant ChErrorQueryIsTooLarge (line 228) | ChErrorQueryIsTooLarge ChErrorType = 229 constant ChErrorNotFoundExpectedDataPart (line 229) | ChErrorNotFoundExpectedDataPart ChErrorType = 230 constant ChErrorTooManyUnexpectedDataParts (line 230) | ChErrorTooManyUnexpectedDataParts ChErrorType = 231 constant ChErrorNoSuchDataPart (line 231) | ChErrorNoSuchDataPart ChErrorType = 232 constant ChErrorBadDataPartName (line 232) | ChErrorBadDataPartName ChErrorType = 233 constant ChErrorNoReplicaHasPart (line 233) | ChErrorNoReplicaHasPart ChErrorType = 234 constant ChErrorDuplicateDataPart (line 234) | ChErrorDuplicateDataPart ChErrorType = 235 constant ChErrorAborted (line 235) | ChErrorAborted ChErrorType = 236 constant ChErrorNoReplicaNameGiven (line 236) | ChErrorNoReplicaNameGiven ChErrorType = 237 constant ChErrorFormatVersionTooOld (line 237) | ChErrorFormatVersionTooOld ChErrorType = 238 constant ChErrorCannotMunmap (line 238) | ChErrorCannotMunmap ChErrorType = 239 constant ChErrorCannotMremap (line 239) | ChErrorCannotMremap ChErrorType = 240 constant ChErrorMemoryLimitExceeded (line 240) | ChErrorMemoryLimitExceeded ChErrorType = 241 constant ChErrorTableIsReadOnly (line 241) | ChErrorTableIsReadOnly ChErrorType = 242 constant ChErrorNotEnoughSpace (line 242) | ChErrorNotEnoughSpace ChErrorType = 243 constant ChErrorUnexpectedZookeeperError (line 243) | ChErrorUnexpectedZookeeperError ChErrorType = 244 constant ChErrorCorruptedData (line 244) | ChErrorCorruptedData ChErrorType = 246 constant ChErrorIncorrectMark (line 245) | ChErrorIncorrectMark ChErrorType = 247 constant ChErrorInvalidPartitionValue (line 246) | ChErrorInvalidPartitionValue ChErrorType = 248 constant ChErrorNotEnoughBlockNumbers (line 247) | ChErrorNotEnoughBlockNumbers ChErrorType = 250 constant ChErrorNoSuchReplica (line 248) | ChErrorNoSuchReplica ChErrorType = 251 constant ChErrorTooManyParts (line 249) | ChErrorTooManyParts ChErrorType = 252 constant ChErrorReplicaIsAlreadyExist (line 250) | ChErrorReplicaIsAlreadyExist ChErrorType = 253 constant ChErrorNoActiveReplicas (line 251) | ChErrorNoActiveReplicas ChErrorType = 254 constant ChErrorTooManyRetriesToFetchParts (line 252) | ChErrorTooManyRetriesToFetchParts ChErrorType = 255 constant ChErrorPartitionAlreadyExists (line 253) | ChErrorPartitionAlreadyExists ChErrorType = 256 constant ChErrorPartitionDoesntExist (line 254) | ChErrorPartitionDoesntExist ChErrorType = 257 constant ChErrorUnionAllResultStructuresMismatch (line 255) | ChErrorUnionAllResultStructuresMismatch ChErrorType = 258 constant ChErrorClientOutputFormatSpecified (line 256) | ChErrorClientOutputFormatSpecified ChErrorType = 260 constant ChErrorUnknownBlockInfoField (line 257) | ChErrorUnknownBlockInfoField ChErrorType = 261 constant ChErrorBadCollation (line 258) | ChErrorBadCollation ChErrorType = 262 constant ChErrorCannotCompileCode (line 259) | ChErrorCannotCompileCode ChErrorType = 263 constant ChErrorIncompatibleTypeOfJoin (line 260) | ChErrorIncompatibleTypeOfJoin ChErrorType = 264 constant ChErrorNoAvailableReplica (line 261) | ChErrorNoAvailableReplica ChErrorType = 265 constant ChErrorMismatchReplicasDataSources (line 262) | ChErrorMismatchReplicasDataSources ChErrorType = 266 constant ChErrorStorageDoesntSupportParallelReplicas (line 263) | ChErrorStorageDoesntSupportParallelReplicas ChErrorType = 267 constant ChErrorCpuidError (line 264) | ChErrorCpuidError ChErrorType = 268 constant ChErrorInfiniteLoop (line 265) | ChErrorInfiniteLoop ChErrorType = 269 constant ChErrorCannotCompress (line 266) | ChErrorCannotCompress ChErrorType = 270 constant ChErrorCannotDecompress (line 267) | ChErrorCannotDecompress ChErrorType = 271 constant ChErrorCannotIoSubmit (line 268) | ChErrorCannotIoSubmit ChErrorType = 272 constant ChErrorCannotIoGetevents (line 269) | ChErrorCannotIoGetevents ChErrorType = 273 constant ChErrorAioReadError (line 270) | ChErrorAioReadError ChErrorType = 274 constant ChErrorAioWriteError (line 271) | ChErrorAioWriteError ChErrorType = 275 constant ChErrorIndexNotUsed (line 272) | ChErrorIndexNotUsed ChErrorType = 277 constant ChErrorAllConnectionTriesFailed (line 273) | ChErrorAllConnectionTriesFailed ChErrorType = 279 constant ChErrorNoAvailableData (line 274) | ChErrorNoAvailableData ChErrorType = 280 constant ChErrorDictionaryIsEmpty (line 275) | ChErrorDictionaryIsEmpty ChErrorType = 281 constant ChErrorIncorrectIndex (line 276) | ChErrorIncorrectIndex ChErrorType = 282 constant ChErrorUnknownDistributedProductMode (line 277) | ChErrorUnknownDistributedProductMode ChErrorType = 283 constant ChErrorWrongGlobalSubquery (line 278) | ChErrorWrongGlobalSubquery ChErrorType = 284 constant ChErrorTooFewLiveReplicas (line 279) | ChErrorTooFewLiveReplicas ChErrorType = 285 constant ChErrorUnsatisfiedQuorumForPreviousWrite (line 280) | ChErrorUnsatisfiedQuorumForPreviousWrite ChErrorType = 286 constant ChErrorUnknownFormatVersion (line 281) | ChErrorUnknownFormatVersion ChErrorType = 287 constant ChErrorDistributedInJoinSubqueryDenied (line 282) | ChErrorDistributedInJoinSubqueryDenied ChErrorType = 288 constant ChErrorReplicaIsNotInQuorum (line 283) | ChErrorReplicaIsNotInQuorum ChErrorType = 289 constant ChErrorLimitExceeded (line 284) | ChErrorLimitExceeded ChErrorType = 290 constant ChErrorDatabaseAccessDenied (line 285) | ChErrorDatabaseAccessDenied ChErrorType = 291 constant ChErrorMongodbCannotAuthenticate (line 286) | ChErrorMongodbCannotAuthenticate ChErrorType = 293 constant ChErrorInvalidBlockExtraInfo (line 287) | ChErrorInvalidBlockExtraInfo ChErrorType = 294 constant ChErrorReceivedEmptyData (line 288) | ChErrorReceivedEmptyData ChErrorType = 295 constant ChErrorNoRemoteShardFound (line 289) | ChErrorNoRemoteShardFound ChErrorType = 296 constant ChErrorShardHasNoConnections (line 290) | ChErrorShardHasNoConnections ChErrorType = 297 constant ChErrorCannotPipe (line 291) | ChErrorCannotPipe ChErrorType = 298 constant ChErrorCannotFork (line 292) | ChErrorCannotFork ChErrorType = 299 constant ChErrorCannotDlsym (line 293) | ChErrorCannotDlsym ChErrorType = 300 constant ChErrorCannotCreateChildProcess (line 294) | ChErrorCannotCreateChildProcess ChErrorType = 301 constant ChErrorChildWasNotExitedNormally (line 295) | ChErrorChildWasNotExitedNormally ChErrorType = 302 constant ChErrorCannotSelect (line 296) | ChErrorCannotSelect ChErrorType = 303 constant ChErrorCannotWaitpid (line 297) | ChErrorCannotWaitpid ChErrorType = 304 constant ChErrorTableWasNotDropped (line 298) | ChErrorTableWasNotDropped ChErrorType = 305 constant ChErrorTooDeepRecursion (line 299) | ChErrorTooDeepRecursion ChErrorType = 306 constant ChErrorTooManyBytes (line 300) | ChErrorTooManyBytes ChErrorType = 307 constant ChErrorUnexpectedNodeInZookeeper (line 301) | ChErrorUnexpectedNodeInZookeeper ChErrorType = 308 constant ChErrorFunctionCannotHaveParameters (line 302) | ChErrorFunctionCannotHaveParameters ChErrorType = 309 constant ChErrorInvalidShardWeight (line 303) | ChErrorInvalidShardWeight ChErrorType = 317 constant ChErrorInvalidConfigParameter (line 304) | ChErrorInvalidConfigParameter ChErrorType = 318 constant ChErrorUnknownStatusOfInsert (line 305) | ChErrorUnknownStatusOfInsert ChErrorType = 319 constant ChErrorValueIsOutOfRangeOfDataType (line 306) | ChErrorValueIsOutOfRangeOfDataType ChErrorType = 321 constant ChErrorBarrierTimeout (line 307) | ChErrorBarrierTimeout ChErrorType = 335 constant ChErrorUnknownDatabaseEngine (line 308) | ChErrorUnknownDatabaseEngine ChErrorType = 336 constant ChErrorDdlGuardIsActive (line 309) | ChErrorDdlGuardIsActive ChErrorType = 337 constant ChErrorUnfinished (line 310) | ChErrorUnfinished ChErrorType = 341 constant ChErrorMetadataMismatch (line 311) | ChErrorMetadataMismatch ChErrorType = 342 constant ChErrorSupportIsDisabled (line 312) | ChErrorSupportIsDisabled ChErrorType = 344 constant ChErrorTableDiffersTooMuch (line 313) | ChErrorTableDiffersTooMuch ChErrorType = 345 constant ChErrorCannotConvertCharset (line 314) | ChErrorCannotConvertCharset ChErrorType = 346 constant ChErrorCannotLoadConfig (line 315) | ChErrorCannotLoadConfig ChErrorType = 347 constant ChErrorCannotInsertNullInOrdinaryColumn (line 316) | ChErrorCannotInsertNullInOrdinaryColumn ChErrorType = 349 constant ChErrorIncompatibleSourceTables (line 317) | ChErrorIncompatibleSourceTables ChErrorType = 350 constant ChErrorAmbiguousTableName (line 318) | ChErrorAmbiguousTableName ChErrorType = 351 constant ChErrorAmbiguousColumnName (line 319) | ChErrorAmbiguousColumnName ChErrorType = 352 constant ChErrorIndexOfPositionalArgumentIsOutOfRange (line 320) | ChErrorIndexOfPositionalArgumentIsOutOfRange ChErrorType = 353 constant ChErrorZlibInflateFailed (line 321) | ChErrorZlibInflateFailed ChErrorType = 354 constant ChErrorZlibDeflateFailed (line 322) | ChErrorZlibDeflateFailed ChErrorType = 355 constant ChErrorBadLambda (line 323) | ChErrorBadLambda ChErrorType = 356 constant ChErrorReservedIdentifierName (line 324) | ChErrorReservedIdentifierName ChErrorType = 357 constant ChErrorIntoOutfileNotAllowed (line 325) | ChErrorIntoOutfileNotAllowed ChErrorType = 358 constant ChErrorTableSizeExceedsMaxDropSizeLimit (line 326) | ChErrorTableSizeExceedsMaxDropSizeLimit ChErrorType = 359 constant ChErrorCannotCreateCharsetConverter (line 327) | ChErrorCannotCreateCharsetConverter ChErrorType = 360 constant ChErrorSeekPositionOutOfBound (line 328) | ChErrorSeekPositionOutOfBound ChErrorType = 361 constant ChErrorCurrentWriteBufferIsExhausted (line 329) | ChErrorCurrentWriteBufferIsExhausted ChErrorType = 362 constant ChErrorCannotCreateIoBuffer (line 330) | ChErrorCannotCreateIoBuffer ChErrorType = 363 constant ChErrorReceivedErrorTooManyRequests (line 331) | ChErrorReceivedErrorTooManyRequests ChErrorType = 364 constant ChErrorSizesOfNestedColumnsAreInconsistent (line 332) | ChErrorSizesOfNestedColumnsAreInconsistent ChErrorType = 366 constant ChErrorTooManyFetches (line 333) | ChErrorTooManyFetches ChErrorType = 367 constant ChErrorAllReplicasAreStale (line 334) | ChErrorAllReplicasAreStale ChErrorType = 369 constant ChErrorDataTypeCannotBeUsedInTables (line 335) | ChErrorDataTypeCannotBeUsedInTables ChErrorType = 370 constant ChErrorInconsistentClusterDefinition (line 336) | ChErrorInconsistentClusterDefinition ChErrorType = 371 constant ChErrorSessionNotFound (line 337) | ChErrorSessionNotFound ChErrorType = 372 constant ChErrorSessionIsLocked (line 338) | ChErrorSessionIsLocked ChErrorType = 373 constant ChErrorInvalidSessionTimeout (line 339) | ChErrorInvalidSessionTimeout ChErrorType = 374 constant ChErrorCannotDlopen (line 340) | ChErrorCannotDlopen ChErrorType = 375 constant ChErrorCannotParseUUID (line 341) | ChErrorCannotParseUUID ChErrorType = 376 constant ChErrorIllegalSyntaxForDataType (line 342) | ChErrorIllegalSyntaxForDataType ChErrorType = 377 constant ChErrorDataTypeCannotHaveArguments (line 343) | ChErrorDataTypeCannotHaveArguments ChErrorType = 378 constant ChErrorUnknownStatusOfDistributedDdlTask (line 344) | ChErrorUnknownStatusOfDistributedDdlTask ChErrorType = 379 constant ChErrorCannotKill (line 345) | ChErrorCannotKill ChErrorType = 380 constant ChErrorHTTPLengthRequired (line 346) | ChErrorHTTPLengthRequired ChErrorType = 381 constant ChErrorCannotLoadCatboostModel (line 347) | ChErrorCannotLoadCatboostModel ChErrorType = 382 constant ChErrorCannotApplyCatboostModel (line 348) | ChErrorCannotApplyCatboostModel ChErrorType = 383 constant ChErrorPartIsTemporarilyLocked (line 349) | ChErrorPartIsTemporarilyLocked ChErrorType = 384 constant ChErrorMultipleStreamsRequired (line 350) | ChErrorMultipleStreamsRequired ChErrorType = 385 constant ChErrorNoCommonType (line 351) | ChErrorNoCommonType ChErrorType = 386 constant ChErrorDictionaryAlreadyExists (line 352) | ChErrorDictionaryAlreadyExists ChErrorType = 387 constant ChErrorCannotAssignOptimize (line 353) | ChErrorCannotAssignOptimize ChErrorType = 388 constant ChErrorInsertWasDeduplicated (line 354) | ChErrorInsertWasDeduplicated ChErrorType = 389 constant ChErrorCannotGetCreateTableQuery (line 355) | ChErrorCannotGetCreateTableQuery ChErrorType = 390 constant ChErrorExternalLibraryError (line 356) | ChErrorExternalLibraryError ChErrorType = 391 constant ChErrorQueryIsProhibited (line 357) | ChErrorQueryIsProhibited ChErrorType = 392 constant ChErrorThereIsNoQuery (line 358) | ChErrorThereIsNoQuery ChErrorType = 393 constant ChErrorQueryWasCancelled (line 359) | ChErrorQueryWasCancelled ChErrorType = 394 constant ChErrorFunctionThrowIfValueIsNonZero (line 360) | ChErrorFunctionThrowIfValueIsNonZero ChErrorType = 395 constant ChErrorTooManyRowsOrBytes (line 361) | ChErrorTooManyRowsOrBytes ChErrorType = 396 constant ChErrorQueryIsNotSupportedInMaterializedView (line 362) | ChErrorQueryIsNotSupportedInMaterializedView ChErrorType = 397 constant ChErrorUnknownMutationCommand (line 363) | ChErrorUnknownMutationCommand ChErrorType = 398 constant ChErrorFormatIsNotSuitableForOutput (line 364) | ChErrorFormatIsNotSuitableForOutput ChErrorType = 399 constant ChErrorCannotStat (line 365) | ChErrorCannotStat ChErrorType = 400 constant ChErrorFeatureIsNotEnabledAtBuildTime (line 366) | ChErrorFeatureIsNotEnabledAtBuildTime ChErrorType = 401 constant ChErrorCannotIosetup (line 367) | ChErrorCannotIosetup ChErrorType = 402 constant ChErrorInvalidJoinOnExpression (line 368) | ChErrorInvalidJoinOnExpression ChErrorType = 403 constant ChErrorBadOdbcConnectionString (line 369) | ChErrorBadOdbcConnectionString ChErrorType = 404 constant ChErrorPartitionSizeExceedsMaxDropSizeLimit (line 370) | ChErrorPartitionSizeExceedsMaxDropSizeLimit ChErrorType = 405 constant ChErrorTopAndLimitTogether (line 371) | ChErrorTopAndLimitTogether ChErrorType = 406 constant ChErrorDecimalOverflow (line 372) | ChErrorDecimalOverflow ChErrorType = 407 constant ChErrorBadRequestParameter (line 373) | ChErrorBadRequestParameter ChErrorType = 408 constant ChErrorExternalExecutableNotFound (line 374) | ChErrorExternalExecutableNotFound ChErrorType = 409 constant ChErrorExternalServerIsNotResponding (line 375) | ChErrorExternalServerIsNotResponding ChErrorType = 410 constant ChErrorPthreadError (line 376) | ChErrorPthreadError ChErrorType = 411 constant ChErrorNetlinkError (line 377) | ChErrorNetlinkError ChErrorType = 412 constant ChErrorCannotSetSignalHandler (line 378) | ChErrorCannotSetSignalHandler ChErrorType = 413 constant ChErrorAllReplicasLost (line 379) | ChErrorAllReplicasLost ChErrorType = 415 constant ChErrorReplicaStatusChanged (line 380) | ChErrorReplicaStatusChanged ChErrorType = 416 constant ChErrorExpectedAllOrAny (line 381) | ChErrorExpectedAllOrAny ChErrorType = 417 constant ChErrorUnknownJoin (line 382) | ChErrorUnknownJoin ChErrorType = 418 constant ChErrorMultipleAssignmentsToColumn (line 383) | ChErrorMultipleAssignmentsToColumn ChErrorType = 419 constant ChErrorCannotUpdateColumn (line 384) | ChErrorCannotUpdateColumn ChErrorType = 420 constant ChErrorCannotAddDifferentAggregateStates (line 385) | ChErrorCannotAddDifferentAggregateStates ChErrorType = 421 constant ChErrorUnsupportedURIScheme (line 386) | ChErrorUnsupportedURIScheme ChErrorType = 422 constant ChErrorCannotGettimeofday (line 387) | ChErrorCannotGettimeofday ChErrorType = 423 constant ChErrorCannotLink (line 388) | ChErrorCannotLink ChErrorType = 424 constant ChErrorSystemError (line 389) | ChErrorSystemError ChErrorType = 425 constant ChErrorCannotCompileRegexp (line 390) | ChErrorCannotCompileRegexp ChErrorType = 427 constant ChErrorUnknownLogLevel (line 391) | ChErrorUnknownLogLevel ChErrorType = 428 constant ChErrorFailedToGetpwuid (line 392) | ChErrorFailedToGetpwuid ChErrorType = 429 constant ChErrorMismatchingUsersForProcessAndData (line 393) | ChErrorMismatchingUsersForProcessAndData ChErrorType = 430 constant ChErrorIllegalSyntaxForCodecType (line 394) | ChErrorIllegalSyntaxForCodecType ChErrorType = 431 constant ChErrorUnknownCodec (line 395) | ChErrorUnknownCodec ChErrorType = 432 constant ChErrorIllegalCodecParameter (line 396) | ChErrorIllegalCodecParameter ChErrorType = 433 constant ChErrorCannotParseProtobufSchema (line 397) | ChErrorCannotParseProtobufSchema ChErrorType = 434 constant ChErrorNoColumnSerializedToRequiredProtobufField (line 398) | ChErrorNoColumnSerializedToRequiredProtobufField ChErrorType = 435 constant ChErrorProtobufBadCast (line 399) | ChErrorProtobufBadCast ChErrorType = 436 constant ChErrorProtobufFieldNotRepeated (line 400) | ChErrorProtobufFieldNotRepeated ChErrorType = 437 constant ChErrorDataTypeCannotBePromoted (line 401) | ChErrorDataTypeCannotBePromoted ChErrorType = 438 constant ChErrorCannotScheduleTask (line 402) | ChErrorCannotScheduleTask ChErrorType = 439 constant ChErrorInvalidLimitExpression (line 403) | ChErrorInvalidLimitExpression ChErrorType = 440 constant ChErrorCannotParseDomainValueFromString (line 404) | ChErrorCannotParseDomainValueFromString ChErrorType = 441 constant ChErrorBadDatabaseForTemporaryTable (line 405) | ChErrorBadDatabaseForTemporaryTable ChErrorType = 442 constant ChErrorNoColumnsSerializedToProtobufFields (line 406) | ChErrorNoColumnsSerializedToProtobufFields ChErrorType = 443 constant ChErrorUnknownProtobufFormat (line 407) | ChErrorUnknownProtobufFormat ChErrorType = 444 constant ChErrorCannotMprotect (line 408) | ChErrorCannotMprotect ChErrorType = 445 constant ChErrorFunctionNotAllowed (line 409) | ChErrorFunctionNotAllowed ChErrorType = 446 constant ChErrorHyperscanCannotScanText (line 410) | ChErrorHyperscanCannotScanText ChErrorType = 447 constant ChErrorBrotliReadFailed (line 411) | ChErrorBrotliReadFailed ChErrorType = 448 constant ChErrorBrotliWriteFailed (line 412) | ChErrorBrotliWriteFailed ChErrorType = 449 constant ChErrorBadTTLExpression (line 413) | ChErrorBadTTLExpression ChErrorType = 450 constant ChErrorBadTTLFile (line 414) | ChErrorBadTTLFile ChErrorType = 451 constant ChErrorSettingConstraintViolation (line 415) | ChErrorSettingConstraintViolation ChErrorType = 452 constant ChErrorMysqlClientInsufficientCapabilities (line 416) | ChErrorMysqlClientInsufficientCapabilities ChErrorType = 453 constant ChErrorOpensslError (line 417) | ChErrorOpensslError ChErrorType = 454 constant ChErrorSuspiciousTypeForLowCardinality (line 418) | ChErrorSuspiciousTypeForLowCardinality ChErrorType = 455 constant ChErrorUnknownQueryParameter (line 419) | ChErrorUnknownQueryParameter ChErrorType = 456 constant ChErrorBadQueryParameter (line 420) | ChErrorBadQueryParameter ChErrorType = 457 constant ChErrorCannotUnlink (line 421) | ChErrorCannotUnlink ChErrorType = 458 constant ChErrorCannotSetThreadPriority (line 422) | ChErrorCannotSetThreadPriority ChErrorType = 459 constant ChErrorCannotCreateTimer (line 423) | ChErrorCannotCreateTimer ChErrorType = 460 constant ChErrorCannotSetTimerPeriod (line 424) | ChErrorCannotSetTimerPeriod ChErrorType = 461 constant ChErrorCannotDeleteTimer (line 425) | ChErrorCannotDeleteTimer ChErrorType = 462 constant ChErrorCannotFcntl (line 426) | ChErrorCannotFcntl ChErrorType = 463 constant ChErrorCannotParseElf (line 427) | ChErrorCannotParseElf ChErrorType = 464 constant ChErrorCannotParseDwarf (line 428) | ChErrorCannotParseDwarf ChErrorType = 465 constant ChErrorInsecurePath (line 429) | ChErrorInsecurePath ChErrorType = 466 constant ChErrorCannotParseBool (line 430) | ChErrorCannotParseBool ChErrorType = 467 constant ChErrorCannotPthreadAttr (line 431) | ChErrorCannotPthreadAttr ChErrorType = 468 constant ChErrorViolatedConstraint (line 432) | ChErrorViolatedConstraint ChErrorType = 469 constant ChErrorQueryIsNotSupportedInLiveView (line 433) | ChErrorQueryIsNotSupportedInLiveView ChErrorType = 470 constant ChErrorInvalidSettingValue (line 434) | ChErrorInvalidSettingValue ChErrorType = 471 constant ChErrorReadonlySetting (line 435) | ChErrorReadonlySetting ChErrorType = 472 constant ChErrorDeadlockAvoided (line 436) | ChErrorDeadlockAvoided ChErrorType = 473 constant ChErrorInvalidTemplateFormat (line 437) | ChErrorInvalidTemplateFormat ChErrorType = 474 constant ChErrorInvalidWithFillExpression (line 438) | ChErrorInvalidWithFillExpression ChErrorType = 475 constant ChErrorWithTiesWithoutOrderBy (line 439) | ChErrorWithTiesWithoutOrderBy ChErrorType = 476 constant ChErrorInvalidUsageOfInput (line 440) | ChErrorInvalidUsageOfInput ChErrorType = 477 constant ChErrorUnknownPolicy (line 441) | ChErrorUnknownPolicy ChErrorType = 478 constant ChErrorUnknownDisk (line 442) | ChErrorUnknownDisk ChErrorType = 479 constant ChErrorUnknownProtocol (line 443) | ChErrorUnknownProtocol ChErrorType = 480 constant ChErrorPathAccessDenied (line 444) | ChErrorPathAccessDenied ChErrorType = 481 constant ChErrorDictionaryAccessDenied (line 445) | ChErrorDictionaryAccessDenied ChErrorType = 482 constant ChErrorTooManyRedirects (line 446) | ChErrorTooManyRedirects ChErrorType = 483 constant ChErrorInternalRedisError (line 447) | ChErrorInternalRedisError ChErrorType = 484 constant ChErrorScalarAlreadyExists (line 448) | ChErrorScalarAlreadyExists ChErrorType = 485 constant ChErrorCannotGetCreateDictionaryQuery (line 449) | ChErrorCannotGetCreateDictionaryQuery ChErrorType = 487 constant ChErrorUnknownDictionary (line 450) | ChErrorUnknownDictionary ChErrorType = 488 constant ChErrorIncorrectDictionaryDefinition (line 451) | ChErrorIncorrectDictionaryDefinition ChErrorType = 489 constant ChErrorCannotFormatDatetime (line 452) | ChErrorCannotFormatDatetime ChErrorType = 490 constant ChErrorUnacceptableURL (line 453) | ChErrorUnacceptableURL ChErrorType = 491 constant ChErrorAccessEntityNotFound (line 454) | ChErrorAccessEntityNotFound ChErrorType = 492 constant ChErrorAccessEntityAlreadyExists (line 455) | ChErrorAccessEntityAlreadyExists ChErrorType = 493 constant ChErrorAccessEntityFoundDuplicates (line 456) | ChErrorAccessEntityFoundDuplicates ChErrorType = 494 constant ChErrorAccessStorageReadonly (line 457) | ChErrorAccessStorageReadonly ChErrorType = 495 constant ChErrorQuotaRequiresClientKey (line 458) | ChErrorQuotaRequiresClientKey ChErrorType = 496 constant ChErrorAccessDenied (line 459) | ChErrorAccessDenied ChErrorType = 497 constant ChErrorLimitByWithTiesIsNotSupported (line 460) | ChErrorLimitByWithTiesIsNotSupported ChErrorType = 498 constant ChErrorS3Error (line 461) | ChErrorS3Error ChErrorType = 499 constant ChErrorAzureBlobStorageError (line 462) | ChErrorAzureBlobStorageError ChErrorType = 500 constant ChErrorCannotCreateDatabase (line 463) | ChErrorCannotCreateDatabase ChErrorType = 501 constant ChErrorCannotSigqueue (line 464) | ChErrorCannotSigqueue ChErrorType = 502 constant ChErrorAggregateFunctionThrow (line 465) | ChErrorAggregateFunctionThrow ChErrorType = 503 constant ChErrorFileAlreadyExists (line 466) | ChErrorFileAlreadyExists ChErrorType = 504 constant ChErrorCannotDeleteDirectory (line 467) | ChErrorCannotDeleteDirectory ChErrorType = 505 constant ChErrorUnexpectedErrorCode (line 468) | ChErrorUnexpectedErrorCode ChErrorType = 506 constant ChErrorUnableToSkipUnusedShards (line 469) | ChErrorUnableToSkipUnusedShards ChErrorType = 507 constant ChErrorUnknownAccessType (line 470) | ChErrorUnknownAccessType ChErrorType = 508 constant ChErrorInvalidGrant (line 471) | ChErrorInvalidGrant ChErrorType = 509 constant ChErrorCacheDictionaryUpdateFail (line 472) | ChErrorCacheDictionaryUpdateFail ChErrorType = 510 constant ChErrorUnknownRole (line 473) | ChErrorUnknownRole ChErrorType = 511 constant ChErrorSetNonGrantedRole (line 474) | ChErrorSetNonGrantedRole ChErrorType = 512 constant ChErrorUnknownPartType (line 475) | ChErrorUnknownPartType ChErrorType = 513 constant ChErrorAccessStorageForInsertionNotFound (line 476) | ChErrorAccessStorageForInsertionNotFound ChErrorType = 514 constant ChErrorIncorrectAccessEntityDefinition (line 477) | ChErrorIncorrectAccessEntityDefinition ChErrorType = 515 constant ChErrorAuthenticationFailed (line 478) | ChErrorAuthenticationFailed ChErrorType = 516 constant ChErrorCannotAssignAlter (line 479) | ChErrorCannotAssignAlter ChErrorType = 517 constant ChErrorCannotCommitOffset (line 480) | ChErrorCannotCommitOffset ChErrorType = 518 constant ChErrorNoRemoteShardAvailable (line 481) | ChErrorNoRemoteShardAvailable ChErrorType = 519 constant ChErrorCannotDetachDictionaryAsTable (line 482) | ChErrorCannotDetachDictionaryAsTable ChErrorType = 520 constant ChErrorAtomicRenameFail (line 483) | ChErrorAtomicRenameFail ChErrorType = 521 constant ChErrorUnknownRowPolicy (line 484) | ChErrorUnknownRowPolicy ChErrorType = 523 constant ChErrorAlterOfColumnIsForbidden (line 485) | ChErrorAlterOfColumnIsForbidden ChErrorType = 524 constant ChErrorIncorrectDiskIndex (line 486) | ChErrorIncorrectDiskIndex ChErrorType = 525 constant ChErrorNoSuitableFunctionImplementation (line 487) | ChErrorNoSuitableFunctionImplementation ChErrorType = 527 constant ChErrorCassandraInternalError (line 488) | ChErrorCassandraInternalError ChErrorType = 528 constant ChErrorNotALeader (line 489) | ChErrorNotALeader ChErrorType = 529 constant ChErrorCannotConnectRabbitmq (line 490) | ChErrorCannotConnectRabbitmq ChErrorType = 530 constant ChErrorCannotFstat (line 491) | ChErrorCannotFstat ChErrorType = 531 constant ChErrorLdapError (line 492) | ChErrorLdapError ChErrorType = 532 constant ChErrorInconsistentReservations (line 493) | ChErrorInconsistentReservations ChErrorType = 533 constant ChErrorNoReservationsProvided (line 494) | ChErrorNoReservationsProvided ChErrorType = 534 constant ChErrorUnknownRaidType (line 495) | ChErrorUnknownRaidType ChErrorType = 535 constant ChErrorCannotRestoreFromFieldDump (line 496) | ChErrorCannotRestoreFromFieldDump ChErrorType = 536 constant ChErrorIllegalMysqlVariable (line 497) | ChErrorIllegalMysqlVariable ChErrorType = 537 constant ChErrorMysqlSyntaxError (line 498) | ChErrorMysqlSyntaxError ChErrorType = 538 constant ChErrorCannotBindRabbitmqExchange (line 499) | ChErrorCannotBindRabbitmqExchange ChErrorType = 539 constant ChErrorCannotDeclareRabbitmqExchange (line 500) | ChErrorCannotDeclareRabbitmqExchange ChErrorType = 540 constant ChErrorCannotCreateRabbitmqQueueBinding (line 501) | ChErrorCannotCreateRabbitmqQueueBinding ChErrorType = 541 constant ChErrorCannotRemoveRabbitmqExchange (line 502) | ChErrorCannotRemoveRabbitmqExchange ChErrorType = 542 constant ChErrorUnknownMysqlDatatypesSupportLevel (line 503) | ChErrorUnknownMysqlDatatypesSupportLevel ChErrorType = 543 constant ChErrorRowAndRowsTogether (line 504) | ChErrorRowAndRowsTogether ChErrorType = 544 constant ChErrorFirstAndNextTogether (line 505) | ChErrorFirstAndNextTogether ChErrorType = 545 constant ChErrorNoRowDelimiter (line 506) | ChErrorNoRowDelimiter ChErrorType = 546 constant ChErrorInvalidRaidType (line 507) | ChErrorInvalidRaidType ChErrorType = 547 constant ChErrorUnknownVolume (line 508) | ChErrorUnknownVolume ChErrorType = 548 constant ChErrorDataTypeCannotBeUsedInKey (line 509) | ChErrorDataTypeCannotBeUsedInKey ChErrorType = 549 constant ChErrorConditionalTreeParentNotFound (line 510) | ChErrorConditionalTreeParentNotFound ChErrorType = 550 constant ChErrorIllegalProjectionManipulator (line 511) | ChErrorIllegalProjectionManipulator ChErrorType = 551 constant ChErrorUnrecognizedArguments (line 512) | ChErrorUnrecognizedArguments ChErrorType = 552 constant ChErrorLzmaStreamEncoderFailed (line 513) | ChErrorLzmaStreamEncoderFailed ChErrorType = 553 constant ChErrorLzmaStreamDecoderFailed (line 514) | ChErrorLzmaStreamDecoderFailed ChErrorType = 554 constant ChErrorRocksdbError (line 515) | ChErrorRocksdbError ChErrorType = 555 constant ChErrorSyncMysqlUserAccessErro (line 516) | ChErrorSyncMysqlUserAccessErro ChErrorType = 556 constant ChErrorUnknownUnion (line 517) | ChErrorUnknownUnion ChErrorType = 557 constant ChErrorExpectedAllOrDistinct (line 518) | ChErrorExpectedAllOrDistinct ChErrorType = 558 constant ChErrorInvalidGrpcQueryInfo (line 519) | ChErrorInvalidGrpcQueryInfo ChErrorType = 559 constant ChErrorZstdEncoderFailed (line 520) | ChErrorZstdEncoderFailed ChErrorType = 560 constant ChErrorZstdDecoderFailed (line 521) | ChErrorZstdDecoderFailed ChErrorType = 561 constant ChErrorTldListNotFound (line 522) | ChErrorTldListNotFound ChErrorType = 562 constant ChErrorCannotReadMapFromText (line 523) | ChErrorCannotReadMapFromText ChErrorType = 563 constant ChErrorInterserverSchemeDoesntMatch (line 524) | ChErrorInterserverSchemeDoesntMatch ChErrorType = 564 constant ChErrorTooManyPartitions (line 525) | ChErrorTooManyPartitions ChErrorType = 565 constant ChErrorCannotRmdir (line 526) | ChErrorCannotRmdir ChErrorType = 566 constant ChErrorDuplicatedPartUuids (line 527) | ChErrorDuplicatedPartUuids ChErrorType = 567 constant ChErrorRaftError (line 528) | ChErrorRaftError ChErrorType = 568 constant ChErrorMultipleColumnsSerializedToSameProtobufField (line 529) | ChErrorMultipleColumnsSerializedToSameProtobufField ChErrorType = 569 constant ChErrorDataTypeIncompatibleWithProtobufField (line 530) | ChErrorDataTypeIncompatibleWithProtobufField ChErrorType = 570 constant ChErrorDatabaseReplicationFailed (line 531) | ChErrorDatabaseReplicationFailed ChErrorType = 571 constant ChErrorTooManyQueryPlanOptimizations (line 532) | ChErrorTooManyQueryPlanOptimizations ChErrorType = 572 constant ChErrorEpollError (line 533) | ChErrorEpollError ChErrorType = 573 constant ChErrorDistributedTooManyPendingBytes (line 534) | ChErrorDistributedTooManyPendingBytes ChErrorType = 574 constant ChErrorUnknownSnapshot (line 535) | ChErrorUnknownSnapshot ChErrorType = 575 constant ChErrorKerberosError (line 536) | ChErrorKerberosError ChErrorType = 576 constant ChErrorInvalidShardID (line 537) | ChErrorInvalidShardID ChErrorType = 577 constant ChErrorInvalidFormatInsertQueryWithData (line 538) | ChErrorInvalidFormatInsertQueryWithData ChErrorType = 578 constant ChErrorIncorrectPartType (line 539) | ChErrorIncorrectPartType ChErrorType = 579 constant ChErrorCannotSetRoundingMode (line 540) | ChErrorCannotSetRoundingMode ChErrorType = 580 constant ChErrorTooLargeDistributedDepth (line 541) | ChErrorTooLargeDistributedDepth ChErrorType = 581 constant ChErrorNoSuchProjectionInTable (line 542) | ChErrorNoSuchProjectionInTable ChErrorType = 582 constant ChErrorIllegalProjection (line 543) | ChErrorIllegalProjection ChErrorType = 583 constant ChErrorProjectionNotUsed (line 544) | ChErrorProjectionNotUsed ChErrorType = 584 constant ChErrorCannotParseYaml (line 545) | ChErrorCannotParseYaml ChErrorType = 585 constant ChErrorCannotCreateFile (line 546) | ChErrorCannotCreateFile ChErrorType = 586 constant ChErrorConcurrentAccessNotSupported (line 547) | ChErrorConcurrentAccessNotSupported ChErrorType = 587 constant ChErrorDistributedBrokenBatchInfo (line 548) | ChErrorDistributedBrokenBatchInfo ChErrorType = 588 constant ChErrorDistributedBrokenBatchFiles (line 549) | ChErrorDistributedBrokenBatchFiles ChErrorType = 589 constant ChErrorCannotSysconf (line 550) | ChErrorCannotSysconf ChErrorType = 590 constant ChErrorSqliteEngineError (line 551) | ChErrorSqliteEngineError ChErrorType = 591 constant ChErrorDataEncryptionError (line 552) | ChErrorDataEncryptionError ChErrorType = 592 constant ChErrorZeroCopyReplicationError (line 553) | ChErrorZeroCopyReplicationError ChErrorType = 593 constant ChErrorBzip2StreamDecoderFailed (line 554) | ChErrorBzip2StreamDecoderFailed ChErrorType = 594 constant ChErrorBzip2StreamEncoderFailed (line 555) | ChErrorBzip2StreamEncoderFailed ChErrorType = 595 constant ChErrorIntersectOrExceptResultStructuresMismatch (line 556) | ChErrorIntersectOrExceptResultStructuresMismatch ChErrorType = 596 constant ChErrorNoSuchErrorCode (line 557) | ChErrorNoSuchErrorCode ChErrorType = 597 constant ChErrorBackupAlreadyExists (line 558) | ChErrorBackupAlreadyExists ChErrorType = 598 constant ChErrorBackupNotFound (line 559) | ChErrorBackupNotFound ChErrorType = 599 constant ChErrorBackupVersionNotSupported (line 560) | ChErrorBackupVersionNotSupported ChErrorType = 600 constant ChErrorBackupDamaged (line 561) | ChErrorBackupDamaged ChErrorType = 601 constant ChErrorNoBaseBackup (line 562) | ChErrorNoBaseBackup ChErrorType = 602 constant ChErrorWrongBaseBackup (line 563) | ChErrorWrongBaseBackup ChErrorType = 603 constant ChErrorBackupEntryAlreadyExists (line 564) | ChErrorBackupEntryAlreadyExists ChErrorType = 604 constant ChErrorBackupEntryNotFound (line 565) | ChErrorBackupEntryNotFound ChErrorType = 605 constant ChErrorBackupIsEmpty (line 566) | ChErrorBackupIsEmpty ChErrorType = 606 constant ChErrorBackupElementDuplicate (line 567) | ChErrorBackupElementDuplicate ChErrorType = 607 constant ChErrorCannotRestoreTable (line 568) | ChErrorCannotRestoreTable ChErrorType = 608 constant ChErrorFunctionAlreadyExists (line 569) | ChErrorFunctionAlreadyExists ChErrorType = 609 constant ChErrorCannotDropFunction (line 570) | ChErrorCannotDropFunction ChErrorType = 610 constant ChErrorCannotCreateRecursiveFunction (line 571) | ChErrorCannotCreateRecursiveFunction ChErrorType = 611 constant ChErrorObjectAlreadyStoredOnDisk (line 572) | ChErrorObjectAlreadyStoredOnDisk ChErrorType = 612 constant ChErrorObjectWasNotStoredOnDisk (line 573) | ChErrorObjectWasNotStoredOnDisk ChErrorType = 613 constant ChErrorPostgresqlConnectionFailure (line 574) | ChErrorPostgresqlConnectionFailure ChErrorType = 614 constant ChErrorCannotAdvise (line 575) | ChErrorCannotAdvise ChErrorType = 615 constant ChErrorUnknownReadMethod (line 576) | ChErrorUnknownReadMethod ChErrorType = 616 constant ChErrorLz4EncoderFailed (line 577) | ChErrorLz4EncoderFailed ChErrorType = 617 constant ChErrorLz4DecoderFailed (line 578) | ChErrorLz4DecoderFailed ChErrorType = 618 constant ChErrorPostgresqlReplicationInternalError (line 579) | ChErrorPostgresqlReplicationInternalError ChErrorType = 619 constant ChErrorQueryNotAllowed (line 580) | ChErrorQueryNotAllowed ChErrorType = 620 constant ChErrorCannotNormalizeString (line 581) | ChErrorCannotNormalizeString ChErrorType = 621 constant ChErrorCannotParseCapnProtoSchema (line 582) | ChErrorCannotParseCapnProtoSchema ChErrorType = 622 constant ChErrorCapnProtoBadCast (line 583) | ChErrorCapnProtoBadCast ChErrorType = 623 constant ChErrorBadFileType (line 584) | ChErrorBadFileType ChErrorType = 624 constant ChErrorIoSetupError (line 585) | ChErrorIoSetupError ChErrorType = 625 constant ChErrorCannotSkipUnknownField (line 586) | ChErrorCannotSkipUnknownField ChErrorType = 626 constant ChErrorBackupEngineNotFound (line 587) | ChErrorBackupEngineNotFound ChErrorType = 627 constant ChErrorOffsetFetchWithoutOrderBy (line 588) | ChErrorOffsetFetchWithoutOrderBy ChErrorType = 628 constant ChErrorHTTPRangeNotSatisfiable (line 589) | ChErrorHTTPRangeNotSatisfiable ChErrorType = 629 constant ChErrorHaveDependentObjects (line 590) | ChErrorHaveDependentObjects ChErrorType = 630 constant ChErrorUnknownFileSize (line 591) | ChErrorUnknownFileSize ChErrorType = 631 constant ChErrorUnexpectedDataAfterParsedValue (line 592) | ChErrorUnexpectedDataAfterParsedValue ChErrorType = 632 constant ChErrorQueryIsNotSupportedInWindowView (line 593) | ChErrorQueryIsNotSupportedInWindowView ChErrorType = 633 constant ChErrorMongodbError (line 594) | ChErrorMongodbError ChErrorType = 634 constant ChErrorCannotPoll (line 595) | ChErrorCannotPoll ChErrorType = 635 constant ChErrorCannotExtractTableStructure (line 596) | ChErrorCannotExtractTableStructure ChErrorType = 636 constant ChErrorInvalidTableOverride (line 597) | ChErrorInvalidTableOverride ChErrorType = 637 constant ChErrorSnappyUncompressFailed (line 598) | ChErrorSnappyUncompressFailed ChErrorType = 638 constant ChErrorSnappyCompressFailed (line 599) | ChErrorSnappyCompressFailed ChErrorType = 639 constant ChErrorNoHivemetastore (line 600) | ChErrorNoHivemetastore ChErrorType = 640 constant ChErrorCannotAppendToFile (line 601) | ChErrorCannotAppendToFile ChErrorType = 641 constant ChErrorCannotPackArchive (line 602) | ChErrorCannotPackArchive ChErrorType = 642 constant ChErrorCannotUnpackArchive (line 603) | ChErrorCannotUnpackArchive ChErrorType = 643 constant ChErrorKeeperException (line 604) | ChErrorKeeperException ChErrorType = 999 constant ChErrorPocoException (line 605) | ChErrorPocoException ChErrorType = 1000 constant ChErrorStdException (line 606) | ChErrorStdException ChErrorType = 1001 constant ChErrorUnknownException (line 607) | ChErrorUnknownException ChErrorType = 1002 FILE: errors_test.go function TestChErrorReadError (line 14) | func TestChErrorReadError(t *testing.T) { function NewParseConfigError (line 69) | func NewParseConfigError(conn, msg string, err error) error { function TestConfigError (line 77) | func TestConfigError(t *testing.T) { FILE: helper_test.go type readErrorHelper (line 8) | type readErrorHelper struct method Read (line 15) | func (r *readErrorHelper) Read(p []byte) (int, error) { type writerErrorHelper (line 23) | type writerErrorHelper struct method Write (line 30) | func (w *writerErrorHelper) Write(p []byte) (int, error) { type writerSlowHelper (line 38) | type writerSlowHelper struct method Write (line 43) | func (w *writerSlowHelper) Write(p []byte) (int, error) { FILE: insert.go type InsertStmt (line 10) | type InsertStmt interface type insertStmt (line 21) | type insertStmt struct method Flush (line 32) | func (s *insertStmt) Flush(ctx context.Context) error { method Close (line 96) | func (s *insertStmt) Close() { method Write (line 108) | func (s *insertStmt) Write(ctx context.Context, columns ...column.Colu... method Insert (line 172) | func (ch *conn) Insert(ctx context.Context, query string, columns ...col... method InsertWithOption (line 177) | func (ch *conn) InsertWithOption( method InsertStream (line 208) | func (ch *conn) InsertStream(ctx context.Context, query string) (InsertS... method InsertStreamWithOption (line 213) | func (ch *conn) InsertStreamWithOption( FILE: insert_test.go function TestInsertError (line 16) | func TestInsertError(t *testing.T) { function TestInsertCtxError (line 97) | func TestInsertCtxError(t *testing.T) { function TestInsertMoreColumnsError (line 136) | func TestInsertMoreColumnsError(t *testing.T) { function TestInsertMoreRowsError (line 164) | func TestInsertMoreRowsError(t *testing.T) { function TestInsert (line 198) | func TestInsert(t *testing.T) { function TestInsertNotFoundColumn (line 283) | func TestInsertNotFoundColumn(t *testing.T) { function TestCompressInsert (line 319) | func TestCompressInsert(t *testing.T) { function TestInsertColumnError (line 395) | func TestInsertColumnError(t *testing.T) { function TestInsertColumnErrorCompress (line 455) | func TestInsertColumnErrorCompress(t *testing.T) { function TestInsertColumnDataError (line 521) | func TestInsertColumnDataError(t *testing.T) { function TestInsertColumnDataErrorValidate (line 607) | func TestInsertColumnDataErrorValidate(t *testing.T) { function TestInsertSelectStmt (line 639) | func TestInsertSelectStmt(t *testing.T) { FILE: internal/ctxwatch/context_watcher.go type ContextWatcher (line 10) | type ContextWatcher struct method Watch (line 34) | func (cw *ContextWatcher) Watch(ctx context.Context) { method Unwatch (line 62) | func (cw *ContextWatcher) Unwatch() { function NewContextWatcher (line 23) | func NewContextWatcher(onCancel, onUnwatchAfterCancel func()) *ContextWa... FILE: internal/ctxwatch/context_watcher_test.go function TestContextWatcherContextCancelled (line 13) | func TestContextWatcherContextCancelled(t *testing.T) { function TestContextWatcherUnwatchdBeforeContextCancelled (line 37) | func TestContextWatcherUnwatchdBeforeContextCancelled(t *testing.T) { function TestContextWatcherMultipleWatchPanics (line 50) | func TestContextWatcherMultipleWatchPanics(t *testing.T) { function TestContextWatcherUnwatchWhenNotWatchingIsSafe (line 62) | func TestContextWatcherUnwatchWhenNotWatchingIsSafe(t *testing.T) { function TestContextWatcherUnwatchIsConcurrencySafe (line 73) | func TestContextWatcherUnwatchIsConcurrencySafe(t *testing.T) { function TestContextWatcherStress (line 87) | func TestContextWatcherStress(t *testing.T) { function BenchmarkContextWatcherUncancellable (line 136) | func BenchmarkContextWatcherUncancellable(b *testing.B) { function BenchmarkContextWatcherCancelled (line 145) | func BenchmarkContextWatcherCancelled(b *testing.B) { function BenchmarkContextWatcherCancellable (line 156) | func BenchmarkContextWatcherCancellable(b *testing.B) { FILE: internal/helper/features.go constant DbmsMinRevisionWithClientInfo (line 4) | DbmsMinRevisionWithClientInfo = 54032 constant DbmsMinRevisionWithServerTimezone (line 5) | DbmsMinRevisionWithServerTimezone = 54058 constant DbmsMinRevisionWithQuotaKeyInClientInfo (line 6) | DbmsMinRevisionWithQuotaKeyInClientInfo = 54060 constant DbmsMinRevisionWithServerDisplayName (line 7) | DbmsMinRevisionWithServerDisplayName = 54372 constant DbmsMinRevisionWithVersionPatch (line 8) | DbmsMinRevisionWithVersionPatch = 54401 constant DbmsMinRevisionWithClientWriteInfo (line 9) | DbmsMinRevisionWithClientWriteInfo = 54420 constant DbmsMinRevisionWithSettingsSerializedAsStrings (line 10) | DbmsMinRevisionWithSettingsSerializedAsStrings = 54429 constant DbmsMinRevisionWithInterServerSecret (line 11) | DbmsMinRevisionWithInterServerSecret = 54441 constant DbmsMinRevisionWithOpenTelemetry (line 12) | DbmsMinRevisionWithOpenTelemetry = 54442 constant DbmsMinProtocolVersionWithDistributedDepth (line 13) | DbmsMinProtocolVersionWithDistributedDepth = 54448 constant DbmsMinProtocolVersionWithInitialQueryStartTime (line 14) | DbmsMinProtocolVersionWithInitialQueryStartTime = 54449 constant DbmsMinProtocolVersionWithParallelReplicas (line 15) | DbmsMinProtocolVersionWithParallelReplicas = 54453 constant DbmsMinProtocolWithCustomSerialization (line 16) | DbmsMinProtocolWithCustomSerialization = 54454 constant DbmsMinProtocolWithQuotaKey (line 17) | DbmsMinProtocolWithQuotaKey = 54458 constant DbmsMinProtocolWithParameters (line 18) | DbmsMinProtocolWithParameters = 54459 constant DbmsMinProtocolWithServerQueryTimeInProgress (line 19) | DbmsMinProtocolWithServerQueryTimeInProgress = 54460 FILE: internal/helper/strs.go constant TupleStr (line 4) | TupleStr = "Tuple(" constant LenTupleStr (line 5) | LenTupleStr = len(TupleStr) constant PointStr (line 6) | PointStr = "Point" constant PolygonStr (line 11) | PolygonStr = "Polygon" constant MultiPolygonStr (line 15) | MultiPolygonStr = "MultiPolygon" constant ArrayStr (line 20) | ArrayStr = "Array(" constant LenArrayStr (line 21) | LenArrayStr = len(ArrayStr) constant ArrayTypeStr (line 22) | ArrayTypeStr = "Array()" constant NestedStr (line 23) | NestedStr = "Nested(" constant LenNestedStr (line 24) | LenNestedStr = len(NestedStr) constant NestedToArrayTube (line 25) | NestedToArrayTube = "Array(Nested(" constant RingStr (line 26) | RingStr = "Ring" constant Enum8Str (line 32) | Enum8Str = "Enum8(" constant Enum8StrLen (line 33) | Enum8StrLen = len(Enum8Str) constant Enum16Str (line 34) | Enum16Str = "Enum16(" constant Enum16StrLen (line 35) | Enum16StrLen = len(Enum16Str) constant DateTimeStr (line 36) | DateTimeStr = "DateTime(" constant DateTimeStrLen (line 37) | DateTimeStrLen = len(DateTimeStr) constant DateTime64Str (line 38) | DateTime64Str = "DateTime64(" constant DateTime64StrLen (line 39) | DateTime64StrLen = len(DateTime64Str) constant DecimalStr (line 40) | DecimalStr = "Decimal(" constant DecimalStrLen (line 41) | DecimalStrLen = len(DecimalStr) constant FixedStringStr (line 42) | FixedStringStr = "FixedString(" constant FixedStringStrLen (line 43) | FixedStringStrLen = len(FixedStringStr) constant SimpleAggregateStr (line 44) | SimpleAggregateStr = "SimpleAggregateFunction(" constant SimpleAggregateStrLen (line 45) | SimpleAggregateStrLen = len(SimpleAggregateStr) constant LowCardinalityStr (line 49) | LowCardinalityStr = "LowCardinality(" constant LenLowCardinalityStr (line 50) | LenLowCardinalityStr = len(LowCardinalityStr) constant LowCardinalityTypeStr (line 51) | LowCardinalityTypeStr = "LowCardinality()" constant LowCardinalityNullableStr (line 52) | LowCardinalityNullableStr = "LowCardinality(Nullable(" constant LenLowCardinalityNullableStr (line 53) | LenLowCardinalityNullableStr = len(LowCardinalityNullableStr) constant LowCardinalityNullableTypeStr (line 54) | LowCardinalityNullableTypeStr = "LowCardinality(Nullable())" constant MapStr (line 58) | MapStr = "Map(" constant LenMapStr (line 59) | LenMapStr = len(MapStr) constant MapTypeStr (line 60) | MapTypeStr = "Map(, )" constant NullableStr (line 64) | NullableStr = "Nullable(" constant LenNullableStr (line 65) | LenNullableStr = len(NullableStr) constant NullableTypeStr (line 66) | NullableTypeStr = "Nullable()" constant StringStr (line 70) | StringStr = "String" FILE: internal/helper/validator.go function IsEnum8 (line 9) | func IsEnum8(chType []byte) bool { function ExtractEnum (line 13) | func ExtractEnum(data []byte) (intToStringMap map[int16]string, stringTo... function IsEnum16 (line 35) | func IsEnum16(chType []byte) bool { function IsDateTimeWithParam (line 39) | func IsDateTimeWithParam(chType []byte) bool { function IsDateTime64 (line 43) | func IsDateTime64(chType []byte) bool { function IsFixedString (line 47) | func IsFixedString(chType []byte) bool { function IsDecimal (line 51) | func IsDecimal(chType []byte) bool { function IsRing (line 55) | func IsRing(chType []byte) bool { function IsMultiPolygon (line 59) | func IsMultiPolygon(chType []byte) bool { function IsNested (line 63) | func IsNested(chType []byte) bool { function NestedToArrayType (line 67) | func NestedToArrayType(chType []byte) []byte { function IsArray (line 78) | func IsArray(chType []byte) bool { function IsPolygon (line 82) | func IsPolygon(chType []byte) bool { function IsString (line 86) | func IsString(chType []byte) bool { function IsLowCardinality (line 90) | func IsLowCardinality(chType []byte) bool { function IsNullableLowCardinality (line 94) | func IsNullableLowCardinality(chType []byte) bool { function IsMap (line 99) | func IsMap(chType []byte) bool { function IsNullable (line 103) | func IsNullable(chType []byte) bool { function IsPoint (line 107) | func IsPoint(chType []byte) bool { function IsTuple (line 111) | func IsTuple(chType []byte) bool { type ColumnData (line 115) | type ColumnData struct function TypesInParentheses (line 119) | func TypesInParentheses(b []byte) ([]ColumnData, error) { function SplitNameType (line 166) | func SplitNameType(b []byte) (ColumnData, error) { function FilterSimpleAggregate (line 196) | func FilterSimpleAggregate(chType []byte) []byte { FILE: internal/readerwriter/compress_reader.go type invalidCompressErr (line 15) | type invalidCompressErr struct method Error (line 19) | func (e *invalidCompressErr) Error() string { type compressReader (line 23) | type compressReader struct method Read (line 41) | func (r *compressReader) Read(buf []byte) (n int, err error) { method readBlock (line 53) | func (r *compressReader) readBlock() error { function NewCompressReader (line 33) | func NewCompressReader(r io.Reader) io.Reader { FILE: internal/readerwriter/compress_writer.go type compressWriter (line 16) | type compressWriter struct method Write (line 41) | func (cw *compressWriter) Write(buf []byte) (int, error) { method Flush (line 61) | func (cw *compressWriter) Flush() error { function NewCompressWriter (line 32) | func NewCompressWriter(w io.Writer, method byte) io.Writer { FILE: internal/readerwriter/consts.go type CompressMethod (line 10) | type CompressMethod constant ChecksumSize (line 14) | ChecksumSize = 16 constant CompressHeaderSize (line 16) | CompressHeaderSize = 1 + 4 + 4 constant HeaderSize (line 19) | HeaderSize = ChecksumSize + CompressHeaderSize constant BlockMaxSize (line 21) | BlockMaxSize = 1024 * 1024 * 128 constant CompressNone (line 26) | CompressNone CompressMethod = 0x00 constant CompressChecksum (line 27) | CompressChecksum CompressMethod = 0x02 constant CompressLZ4 (line 28) | CompressLZ4 CompressMethod = 0x82 constant CompressZSTD (line 29) | CompressZSTD CompressMethod = 0x90 constant checksumSize (line 36) | checksumSize = 16 constant compressHeaderSize (line 37) | compressHeaderSize = 1 + 4 + 4 constant headerSize (line 38) | headerSize = checksumSize + compressHeaderSize constant maxDataSize (line 41) | maxDataSize = 1024 * 1024 * 2 constant maxBlockSize (line 42) | maxBlockSize = maxDataSize constant hRawSize (line 44) | hRawSize = 17 constant hDataSize (line 45) | hDataSize = 21 constant hMethod (line 46) | hMethod = 16 type CorruptedDataErr (line 50) | type CorruptedDataErr struct method Error (line 57) | func (c *CorruptedDataErr) Error() string { FILE: internal/readerwriter/reader.go type Reader (line 9) | type Reader struct method SetCompress (line 25) | func (r *Reader) SetCompress(c bool) { method Uvarint (line 37) | func (r *Reader) Uvarint() (uint64, error) { method Int32 (line 42) | func (r *Reader) Int32() (int32, error) { method Uint32 (line 51) | func (r *Reader) Uint32() (uint32, error) { method Uint64 (line 59) | func (r *Reader) Uint64() (uint64, error) { method FixedString (line 67) | func (r *Reader) FixedString(strlen int) ([]byte, error) { method String (line 75) | func (r *Reader) String() (string, error) { method ByteString (line 88) | func (r *Reader) ByteString() ([]byte, error) { method ReadByte (line 100) | func (r *Reader) ReadByte() (byte, error) { method Read (line 108) | func (r *Reader) Read(buf []byte) (int, error) { function NewReader (line 17) | func NewReader(input io.Reader) *Reader { FILE: internal/readerwriter/writer.go type Writer (line 12) | type Writer struct method Uvarint (line 25) | func (w *Writer) Uvarint(v uint64) { method Int32 (line 31) | func (w *Writer) Int32(v int32) { method Int64 (line 36) | func (w *Writer) Int64(v int64) { method Uint8 (line 41) | func (w *Writer) Uint8(v uint8) { method Uint32 (line 46) | func (w *Writer) Uint32(v uint32) { method Uint64 (line 55) | func (w *Writer) Uint64(v uint64) { method String (line 68) | func (w *Writer) String(v string) { method ByteString (line 75) | func (w *Writer) ByteString(v []byte) { method Write (line 81) | func (w *Writer) Write(b []byte) { method WriteTo (line 86) | func (w *Writer) WriteTo(wt io.Writer) (int64, error) { method Reset (line 91) | func (w *Writer) Reset() { method Output (line 96) | func (w *Writer) Output() *bytes.Buffer { function NewWriter (line 18) | func NewWriter() *Writer { function str2Bytes (line 100) | func str2Bytes(str string) []byte { FILE: ping.go type pong (line 7) | type pong struct method Ping (line 10) | func (ch *conn) Ping(ctx context.Context) error { FILE: ping_test.go function TestPing (line 15) | func TestPing(t *testing.T) { function TestPingWriteError (line 26) | func TestPingWriteError(t *testing.T) { function TestPingCtxError (line 66) | func TestPingCtxError(t *testing.T) { FILE: profile.go type Profile (line 4) | type Profile struct method read (line 17) | func (p *Profile) read(ch *conn) (err error) { function newProfile (line 13) | func newProfile() *Profile { FILE: profile_event.go type ProfileEvent (line 8) | type ProfileEvent struct method read (line 28) | func (p ProfileEvent) read(c *conn) error { function newProfileEvent (line 17) | func newProfileEvent() *ProfileEvent { FILE: profile_test.go function TestProfileReadError (line 17) | func TestProfileReadError(t *testing.T) { FILE: progress.go type Progress (line 6) | type Progress struct method read (line 19) | func (p *Progress) read(ch *conn) (err error) { function newProgress (line 15) | func newProgress() *Progress { FILE: select_stmt.go method Select (line 17) | func (ch *conn) Select(ctx context.Context, query string, columns ...col... method SelectWithOption (line 23) | func (ch *conn) SelectWithOption( type SelectStmt (line 86) | type SelectStmt interface type selectStmt (line 105) | type selectStmt struct method readEmptyBlock (line 121) | func (s *selectStmt) readEmptyBlock(b *block) error { method Next (line 144) | func (s *selectStmt) Next() bool { method validate (line 218) | func (s *selectStmt) validate() error { method RowsInBlock (line 229) | func (s *selectStmt) RowsInBlock() int { method Err (line 235) | func (s *selectStmt) Err() error { method Close (line 243) | func (s *selectStmt) Close() { method Columns (line 255) | func (s *selectStmt) Columns() []column.ColumnBasic { method getColumnsByChType (line 259) | func (s *selectStmt) getColumnsByChType(b *block) ([]column.ColumnBasi... method columnByType (line 278) | func (s *selectStmt) columnByType(chType []byte, arrayLevel int, nulla... function getFixedType (line 450) | func getFixedType(fixedLen, arrayLevel int, nullable, lc bool) (column.C... FILE: select_stmt_test.go function TestSelectError (line 18) | func TestSelectError(t *testing.T) { function TestSelectCtxError (line 63) | func TestSelectCtxError(t *testing.T) { function TestSelectProgress (line 96) | func TestSelectProgress(t *testing.T) { function TestSelectParameters (line 133) | func TestSelectParameters(t *testing.T) { function TestSelectProgressError (line 237) | func TestSelectProgressError(t *testing.T) { function TestGetFixedColumnType (line 318) | func TestGetFixedColumnType(t *testing.T) { FILE: server_info.go type ServerInfo (line 11) | type ServerInfo struct method read (line 21) | func (srv *ServerInfo) read(r *readerwriter.Reader) (err error) { method String (line 52) | func (srv *ServerInfo) String() string { method ServerInfo (line 64) | func (ch *conn) ServerInfo() *ServerInfo { FILE: server_info_test.go function TestServerInfoError (line 13) | func TestServerInfoError(t *testing.T) { FILE: settings.go type Setting (line 15) | type Setting struct method write (line 29) | func (st Setting) write(w *readerwriter.Writer) { constant settingFlagImportant (line 21) | settingFlagImportant = 0x01 constant settingFlagCustom (line 22) | settingFlagCustom = 0x02 constant settingFlagObsolete (line 23) | settingFlagObsolete = 0x04 type Settings (line 27) | type Settings method write (line 47) | func (s Settings) write(w *readerwriter.Writer) { type Parameters (line 54) | type Parameters struct method Params (line 241) | func (p *Parameters) Params() []Setting { method hasParam (line 245) | func (p *Parameters) hasParam() bool { method write (line 249) | func (p *Parameters) write(w *readerwriter.Writer) { type Parameter (line 58) | type Parameter function NewParameters (line 60) | func NewParameters(input ...Parameter) *Parameters { function IntParameter (line 71) | func IntParameter[T ~int | ~int8 | ~int16 | ~int32 | ~int64](name string... function IntSliceParameter (line 82) | func IntSliceParameter[T ~int | ~int8 | ~int16 | ~int32 | ~int64](name s... function UintParameter (line 102) | func UintParameter[T ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64](name ... function UintSliceParameter (line 113) | func UintSliceParameter[T ~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64](... function Float32Parameter (line 134) | func Float32Parameter[T ~float32](name string, v T) Parameter { function Float32SliceParameter (line 145) | func Float32SliceParameter[T ~float32](name string, v []T) Parameter { function Float64Parameter (line 166) | func Float64Parameter[T ~float64](name string, v T) Parameter { function Float64SliceParameter (line 177) | func Float64SliceParameter[T ~float64](name string, v []T) Parameter { function addSlashes (line 197) | func addSlashes(str string) string { function StringParameter (line 211) | func StringParameter(name, v string) Parameter { function StringSliceParameter (line 222) | func StringSliceParameter(name string, v []string) Parameter { FILE: sqlbuilder/injection.go type injection (line 12) | type injection struct method SQL (line 27) | func (injection *injection) SQL(marker injectionMarker, sql string) { method WriteTo (line 33) | func (injection *injection) WriteTo(buf *bytes.Buffer, marker injectio... type injectionMarker (line 16) | type injectionMarker function newInjection (line 19) | func newInjection() *injection { FILE: sqlbuilder/select.go constant selectMarkerInit (line 16) | selectMarkerInit injectionMarker = iota constant selectMarkerAfterSelect (line 17) | selectMarkerAfterSelect constant selectMarkerAfterFrom (line 18) | selectMarkerAfterFrom constant selectMarkerAfterArrayJoin (line 19) | selectMarkerAfterArrayJoin constant selectMarkerAfterJoin (line 20) | selectMarkerAfterJoin constant selectMarkerAfterPreWhere (line 21) | selectMarkerAfterPreWhere constant selectMarkerAfterWhere (line 22) | selectMarkerAfterWhere constant selectMarkerAfterGroupBy (line 23) | selectMarkerAfterGroupBy constant selectMarkerAfterOrderBy (line 24) | selectMarkerAfterOrderBy constant selectMarkerAfterLimit (line 25) | selectMarkerAfterLimit constant selectMarkerAfterFor (line 26) | selectMarkerAfterFor type JoinOption (line 30) | type JoinOption constant InnerJoin (line 34) | InnerJoin JoinOption = "INNER" constant LeftJoin (line 35) | LeftJoin JoinOption = "LEFT" constant LeftOuterJoin (line 36) | LeftOuterJoin JoinOption = "LEFT OUTER" constant LeftSemiJoin (line 37) | LeftSemiJoin JoinOption = "LEFT SEMI" constant LeftAntiJoin (line 38) | LeftAntiJoin JoinOption = "LEFT ANTI" constant RightJoin (line 39) | RightJoin JoinOption = "RIGHT" constant RightOuterJoin (line 40) | RightOuterJoin JoinOption = "RIGHT OUTER" constant RightSemiJoin (line 41) | RightSemiJoin JoinOption = "RIGHT SEMI" constant RightAntiJoin (line 42) | RightAntiJoin JoinOption = "RIGHT ANTI" constant FullJoin (line 43) | FullJoin JoinOption = "FULL" constant FullOuterJoin (line 44) | FullOuterJoin JoinOption = "FULL OUTER" constant CrossJoin (line 45) | CrossJoin JoinOption = "CROSS" function NewSelectBuilder (line 48) | func NewSelectBuilder() *SelectBuilder { type SelectBuilder (line 57) | type SelectBuilder struct method Select (line 88) | func (sb *SelectBuilder) Select(col ...string) *SelectBuilder { method Column (line 95) | func (sb *SelectBuilder) Column(col ...string) *SelectBuilder { method Distinct (line 102) | func (sb *SelectBuilder) Distinct() *SelectBuilder { method Final (line 109) | func (sb *SelectBuilder) Final() *SelectBuilder { method From (line 116) | func (sb *SelectBuilder) From(table ...string) *SelectBuilder { method ArrayJoin (line 127) | func (sb *SelectBuilder) ArrayJoin(onExpr ...string) *SelectBuilder { method LeftArrayJoin (line 134) | func (sb *SelectBuilder) LeftArrayJoin() *SelectBuilder { method Join (line 144) | func (sb *SelectBuilder) Join(table string, onExpr ...string) *SelectB... method JoinWithOption (line 163) | func (sb *SelectBuilder) JoinWithOption(option JoinOption, table strin... method Where (line 172) | func (sb *SelectBuilder) Where(andExpr ...string) *SelectBuilder { method PreWhere (line 179) | func (sb *SelectBuilder) PreWhere(andExpr ...string) *SelectBuilder { method Parameters (line 185) | func (sb *SelectBuilder) Parameters(p chconn.Parameter) *SelectBuilder { method Having (line 191) | func (sb *SelectBuilder) Having(andExpr ...string) *SelectBuilder { method GroupBy (line 198) | func (sb *SelectBuilder) GroupBy(col ...string) *SelectBuilder { method OrderBy (line 205) | func (sb *SelectBuilder) OrderBy(col ...string) *SelectBuilder { method Limit (line 212) | func (sb *SelectBuilder) Limit(limit int) *SelectBuilder { method Offset (line 219) | func (sb *SelectBuilder) Offset(offset int) *SelectBuilder { method String (line 231) | func (sb *SelectBuilder) String() string { method Build (line 238) | func (sb *SelectBuilder) Build() (sql string, params *chconn.Parameter... method SQL (line 334) | func (sb *SelectBuilder) SQL(sql string) *SelectBuilder { function Select (line 83) | func Select(col ...string) *SelectBuilder { function As (line 226) | func As(name, alias string) string { FILE: sqlbuilder/select_test.go function TestSelectBuilder (line 11) | func TestSelectBuilder(t *testing.T) { FILE: types/Int256.go function Int256Zero (line 12) | func Int256Zero() Int256 { function Int256Max (line 17) | func Int256Max() Int256 { type Int256 (line 26) | type Int256 struct method Big (line 96) | func (u Int256) Big() *big.Int { method Equals (line 111) | func (u Int256) Equals(v Int256) bool { method Neg (line 116) | func (u Int256) Neg() (z Int256) { function Int256From128 (line 33) | func Int256From128(v Int128) Int256 { function Int256From64 (line 47) | func Int256From64(v int64) Int256 { function Int256FromBig (line 54) | func Int256FromBig(i *big.Int) Int256 { function Int256FromBigEx (line 63) | func Int256FromBigEx(i *big.Int) (Int256, bool) { FILE: types/date_type.go type Date (line 7) | type Date method FromTime (line 29) | func (d Date) FromTime(v time.Time, precision int) Date { method ToTime (line 33) | func (d Date) ToTime(loc *time.Location, precision int) time.Time { method Unix (line 37) | func (d Date) Unix() int64 { constant minDate32 (line 9) | minDate32 = int32(-25567) type Date32 (line 11) | type Date32 method Unix (line 41) | func (d Date32) Unix() int64 { method FromTime (line 45) | func (d Date32) FromTime(v time.Time, precision int) Date32 { method ToTime (line 49) | func (d Date32) ToTime(loc *time.Location, precision int) time.Time { type DateTime (line 13) | type DateTime method FromTime (line 70) | func (d DateTime) FromTime(v time.Time, precision int) DateTime { method ToTime (line 74) | func (d DateTime) ToTime(loc *time.Location, precision int) time.Time { constant minDateTime64 (line 15) | minDateTime64 = int64(-2208988800) type DateTime64 (line 17) | type DateTime64 method FromTime (line 98) | func (d DateTime64) FromTime(v time.Time, precision int) DateTime64 { method ToTime (line 102) | func (d DateTime64) ToTime(loc *time.Location, precision int) time.Time { constant daySeconds (line 19) | daySeconds = 24 * 60 * 60 function TimeToDate (line 21) | func TimeToDate(t time.Time) Date { function TimeToDate32 (line 53) | func TimeToDate32(t time.Time) Date32 { function TimeToDateTime (line 63) | func TimeToDateTime(t time.Time) DateTime { function TimeToDateTime64 (line 91) | func TimeToDateTime64(t time.Time, precision int) DateTime64 { FILE: types/decimal.go type Decimal32 (line 4) | type Decimal32 method Float64 (line 23) | func (d Decimal32) Float64(scale int) float64 { type Decimal64 (line 7) | type Decimal64 method Float64 (line 28) | func (d Decimal64) Float64(scale int) float64 { type Decimal128 (line 10) | type Decimal128 type Decimal256 (line 13) | type Decimal256 function Decimal32FromFloat64 (line 33) | func Decimal32FromFloat64(f float64, scale int) Decimal32 { function Decimal64FromFloat64 (line 38) | func Decimal64FromFloat64(f float64, scale int) Decimal64 { FILE: types/decimal_test.go function TestDecimal (line 9) | func TestDecimal(t *testing.T) { FILE: types/int128.go function Int128Zero (line 13) | func Int128Zero() Int128 { function Int128Max (line 18) | func Int128Max() Int128 { type Int128 (line 27) | type Int128 struct method Big (line 89) | func (u Int128) Big() *big.Int { method Equals (line 100) | func (u Int128) Equals(v Int128) bool { method Neg (line 105) | func (u Int128) Neg() (z Int128) { function Int128From64 (line 38) | func Int128From64(v int64) Int128 { function Int128FromBig (line 49) | func Int128FromBig(i *big.Int) Int128 { function Int128FromBigEx (line 58) | func Int128FromBigEx(i *big.Int) (Int128, bool) { FILE: types/int128_test.go function TestInt128 (line 11) | func TestInt128(t *testing.T) { FILE: types/int256_test.go function TestInt256 (line 11) | func TestInt256(t *testing.T) { FILE: types/ip_test.go function TestIP (line 10) | func TestIP(t *testing.T) { FILE: types/ipv4.go type IPv4 (line 8) | type IPv4 method NetIP (line 10) | func (ip IPv4) NetIP() netip.Addr { function IPv4FromAddr (line 14) | func IPv4FromAddr(ipAddr netip.Addr) IPv4 { FILE: types/ipv6.go type IPv6 (line 5) | type IPv6 method NetIP (line 7) | func (ip IPv6) NetIP() netip.Addr { function IPv6FromAddr (line 11) | func IPv6FromAddr(ipAddr netip.Addr) IPv6 { FILE: types/tuple.go type Point (line 3) | type Point type Tuple2 (line 5) | type Tuple2 struct type Tuple3 (line 10) | type Tuple3 struct type Tuple4 (line 16) | type Tuple4 struct type Tuple5 (line 23) | type Tuple5 struct FILE: types/uint128.go function Uint128Zero (line 13) | func Uint128Zero() Uint128 { function Uint128Max (line 18) | func Uint128Max() Uint128 { type Uint128 (line 27) | type Uint128 struct method Big (line 77) | func (u Uint128) Big() *big.Int { method Equals (line 87) | func (u Uint128) Equals(v Uint128) bool { function Uint128From64 (line 38) | func Uint128From64(v uint64) Uint128 { function Uint128FromBig (line 45) | func Uint128FromBig(i *big.Int) Uint128 { function Uint128FromBigEx (line 54) | func Uint128FromBigEx(i *big.Int) (Uint128, bool) { FILE: types/uint128_test.go function TestUint128 (line 11) | func TestUint128(t *testing.T) { FILE: types/uint256.go function Uint256Zero (line 12) | func Uint256Zero() Uint256 { function Uint256Max (line 17) | func Uint256Max() Uint256 { type Uint256 (line 26) | type Uint256 struct method Big (line 82) | func (u Uint256) Big() *big.Int { method Equals (line 97) | func (u Uint256) Equals(v Uint256) bool { function Uint256From128 (line 33) | func Uint256From128(v Uint128) Uint256 { function Uint256From64 (line 39) | func Uint256From64(v uint64) Uint256 { function Uint256FromBig (line 46) | func Uint256FromBig(i *big.Int) Uint256 { function Uint256FromBigEx (line 55) | func Uint256FromBigEx(i *big.Int) (Uint256, bool) { FILE: types/uint256_test.go function TestUint256 (line 9) | func TestUint256(t *testing.T) { FILE: types/uuid.go type UUID (line 3) | type UUID method BigEndian (line 18) | func (u UUID) BigEndian() [16]byte { function UUIDFromBigEndian (line 5) | func UUIDFromBigEndian(b [16]byte) UUID { FILE: types/uuid_test.go function TestUUID (line 10) | func TestUUID(t *testing.T) {