Documentation ¶
Index ¶
- Constants
- Variables
- type Index
- type Table
- func (ta *Table) AddColumn(name string, columnType querypb.Type, defval sqltypes.Value, extra string)
- func (ta *Table) AddIndex(name string) (index *Index)
- func (ta *Table) FindColumn(name string) int
- func (ta *Table) GetPKColumn(index int) *TableColumn
- func (ta *Table) SetMysqlStats(tr, dl, il, df, mdl sqltypes.Value)
- type TableColumn
Constants ¶
View Source
const ( NoType = iota Sequence )
Table types
Variables ¶
View Source
var TypeNames = []string{
"none",
"sequence",
}
TypeNames allows to fetch a the type name for a table. Count must match the number of table types.
Functions ¶
This section is empty.
Types ¶
type Index ¶
type Index struct { Name cistring.CIString // Columns are the columns comprising the index. Columns []cistring.CIString // Cardinality[i] is the number of distinct values of Columns[i] in the // table. Cardinality []uint64 // DataColumns are the primary-key columns for secondary indices and // all the columns for the primary-key index. DataColumns []cistring.CIString }
Index contains info about a table index.
func (*Index) FindColumn ¶
FindColumn finds a column in the index. It returns the index if found. Otherwise, it returns -1.
func (*Index) FindDataColumn ¶
FindDataColumn finds a data column in the index. It returns the index if found. Otherwise, it returns -1.
type Table ¶
type Table struct { Name string Columns []TableColumn Indexes []*Index PKColumns []int Type int // These vars can be accessed concurrently. TableRows sync2.AtomicInt64 DataLength sync2.AtomicInt64 IndexLength sync2.AtomicInt64 DataFree sync2.AtomicInt64 MaxDataLength sync2.AtomicInt64 }
Table contains info about a table.
func (*Table) AddColumn ¶
func (ta *Table) AddColumn(name string, columnType querypb.Type, defval sqltypes.Value, extra string)
AddColumn adds a column to the Table.
func (*Table) FindColumn ¶
FindColumn finds a column in the table. It returns the index if found. Otherwise, it returns -1.
func (*Table) GetPKColumn ¶
func (ta *Table) GetPKColumn(index int) *TableColumn
GetPKColumn returns the pk column specified by the index.
func (*Table) SetMysqlStats ¶
SetMysqlStats receives the values found in the mysql information_schema.tables table
Click to show internal directories.
Click to hide internal directories.