sql

package
v1.0.48 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 14, 2019 License: MIT Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func BuildDMLDeleteQuery

func BuildDMLDeleteQuery(databaseName, tableName string, tableColumns, uniqueKeyColumns *ColumnList, args []interface{}) (result string, uniqueKeyArgs []interface{}, err error)

func BuildDMLInsertQuery

func BuildDMLInsertQuery(databaseName, tableName string, tableColumns, sharedColumns, mappedSharedColumns *ColumnList, args []interface{}) (result string, sharedArgs []interface{}, err error)

func BuildDMLUpdateQuery

func BuildDMLUpdateQuery(databaseName, tableName string, tableColumns, sharedColumns, mappedSharedColumns, uniqueKeyColumns *ColumnList, valueArgs, whereArgs []interface{}) (result string, sharedArgs, uniqueKeyArgs []interface{}, err error)

func BuildEqualsComparison

func BuildEqualsComparison(columns []string, values []string) (result string, err error)

func BuildEqualsPreparedComparison

func BuildEqualsPreparedComparison(columns []string) (result string, err error)

func BuildRangeComparison

func BuildRangeComparison(columns []string, values []string, args []interface{}, comparisonSign ValueComparisonSign) (result string, explodedArgs []interface{}, err error)

func BuildRangeInsertPreparedQuery

func BuildRangeInsertPreparedQuery(databaseName, originalTableName, ghostTableName string, sharedColumns []string, mappedSharedColumns []string, uniqueKey string, uniqueKeyColumns *ColumnList, rangeStartArgs, rangeEndArgs []interface{}, includeRangeStartValues bool, transactionalTable bool) (result string, explodedArgs []interface{}, err error)

func BuildRangeInsertQuery

func BuildRangeInsertQuery(databaseName, originalTableName, ghostTableName string, sharedColumns []string, mappedSharedColumns []string, uniqueKey string, uniqueKeyColumns *ColumnList, rangeStartValues, rangeEndValues []string, rangeStartArgs, rangeEndArgs []interface{}, includeRangeStartValues bool, transactionalTable bool) (result string, explodedArgs []interface{}, err error)

func BuildRangePreparedComparison

func BuildRangePreparedComparison(columns *ColumnList, args []interface{}, comparisonSign ValueComparisonSign) (result string, explodedArgs []interface{}, err error)

func BuildSetPreparedClause

func BuildSetPreparedClause(columns *ColumnList) (result string, err error)

func BuildUniqueKeyMaxValuesPreparedQuery

func BuildUniqueKeyMaxValuesPreparedQuery(databaseName, tableName string, uniqueKeyColumns *ColumnList) (string, error)

func BuildUniqueKeyMinValuesPreparedQuery

func BuildUniqueKeyMinValuesPreparedQuery(databaseName, tableName string, uniqueKeyColumns *ColumnList) (string, error)

func BuildUniqueKeyRangeEndPreparedQueryViaOffset added in v1.0.42

func BuildUniqueKeyRangeEndPreparedQueryViaOffset(databaseName, tableName string, uniqueKeyColumns *ColumnList, rangeStartArgs, rangeEndArgs []interface{}, chunkSize int64, includeRangeStartValues bool, hint string) (result string, explodedArgs []interface{}, err error)

func BuildUniqueKeyRangeEndPreparedQueryViaTemptable added in v1.0.42

func BuildUniqueKeyRangeEndPreparedQueryViaTemptable(databaseName, tableName string, uniqueKeyColumns *ColumnList, rangeStartArgs, rangeEndArgs []interface{}, chunkSize int64, includeRangeStartValues bool, hint string) (result string, explodedArgs []interface{}, err error)

func BuildValueComparison

func BuildValueComparison(column string, value string, comparisonSign ValueComparisonSign) (result string, err error)

func EscapeName

func EscapeName(name string) string

EscapeName will escape a db/table/column/... name by wrapping with backticks. It is not fool proof. I'm just trying to do the right thing here, not solving SQL injection issues, which should be irrelevant for this tool.

Types

type Column added in v1.0.20

type Column struct {
	Name       string
	IsUnsigned bool
	Charset    string
	Type       ColumnType
	// contains filtered or unexported fields
}

func NewColumns added in v1.0.20

func NewColumns(names []string) []Column

func ParseColumns added in v1.0.20

func ParseColumns(names string) []Column

type ColumnList

type ColumnList struct {
	Ordinals ColumnsMap
	// contains filtered or unexported fields
}

ColumnList makes for a named list of columns

func NewColumnList

func NewColumnList(names []string) *ColumnList

NewColumnList creates an object given ordered list of column names

func ParseColumnList

func ParseColumnList(names string) *ColumnList

ParseColumnList parses a comma delimited list of column names

func (*ColumnList) Columns added in v1.0.20

func (this *ColumnList) Columns() []Column

func (*ColumnList) Equals

func (this *ColumnList) Equals(other *ColumnList) bool

func (*ColumnList) EqualsByNames added in v1.0.20

func (this *ColumnList) EqualsByNames(other *ColumnList) bool

func (*ColumnList) GetCharset added in v1.0.20

func (this *ColumnList) GetCharset(columnName string) string

func (*ColumnList) GetColumn added in v1.0.28

func (this *ColumnList) GetColumn(columnName string) *Column

func (*ColumnList) GetColumnType added in v1.0.28

func (this *ColumnList) GetColumnType(columnName string) ColumnType

func (*ColumnList) HasTimezoneConversion added in v1.0.28

func (this *ColumnList) HasTimezoneConversion(columnName string) bool

func (*ColumnList) IsSubsetOf

func (this *ColumnList) IsSubsetOf(other *ColumnList) bool

IsSubsetOf returns 'true' when column names of this list are a subset of another list, in arbitrary order (order agnostic)

func (*ColumnList) IsUnsigned added in v1.0.10

func (this *ColumnList) IsUnsigned(columnName string) bool

func (*ColumnList) Len

func (this *ColumnList) Len() int

func (*ColumnList) Names

func (this *ColumnList) Names() []string

func (*ColumnList) SetCharset added in v1.0.20

func (this *ColumnList) SetCharset(columnName string, charset string)

func (*ColumnList) SetColumnType added in v1.0.28

func (this *ColumnList) SetColumnType(columnName string, columnType ColumnType)

func (*ColumnList) SetConvertDatetimeToTimestamp added in v1.0.28

func (this *ColumnList) SetConvertDatetimeToTimestamp(columnName string, toTimezone string)

func (*ColumnList) SetUnsigned added in v1.0.10

func (this *ColumnList) SetUnsigned(columnName string)

func (*ColumnList) String

func (this *ColumnList) String() string

type ColumnType added in v1.0.28

type ColumnType int
const (
	UnknownColumnType ColumnType = iota
	TimestampColumnType
	DateTimeColumnType
	EnumColumnType
	MediumIntColumnType
	JSONColumnType
	FloatColumnType
)

type ColumnValues

type ColumnValues struct {
	ValuesPointers []interface{}
	// contains filtered or unexported fields
}

func NewColumnValues

func NewColumnValues(length int) *ColumnValues

func ToColumnValues

func ToColumnValues(abstractValues []interface{}) *ColumnValues

func (*ColumnValues) AbstractValues

func (this *ColumnValues) AbstractValues() []interface{}

func (*ColumnValues) String

func (this *ColumnValues) String() string

func (*ColumnValues) StringColumn

func (this *ColumnValues) StringColumn(index int) string

type ColumnsMap

type ColumnsMap map[string]int

ColumnsMap maps a column name onto its ordinal position

func NewColumnsMap

func NewColumnsMap(orderedColumns []Column) ColumnsMap

func NewEmptyColumnsMap added in v1.0.10

func NewEmptyColumnsMap() ColumnsMap

type Parser added in v0.9.6

type Parser struct {
	// contains filtered or unexported fields
}

func NewParser added in v0.9.6

func NewParser() *Parser

func (*Parser) DroppedColumnsMap added in v1.0.40

func (this *Parser) DroppedColumnsMap() map[string]bool

func (*Parser) GetNonTrivialRenames added in v0.9.6

func (this *Parser) GetNonTrivialRenames() map[string]string

func (*Parser) HasNonTrivialRenames added in v0.9.6

func (this *Parser) HasNonTrivialRenames() bool

func (*Parser) IsRenameTable added in v1.0.46

func (this *Parser) IsRenameTable() bool

func (*Parser) ParseAlterStatement added in v0.9.6

func (this *Parser) ParseAlterStatement(alterStatement string) (err error)

type TimezoneConversion added in v1.0.44

type TimezoneConversion struct {
	ToTimezone string
}

type UniqueKey

type UniqueKey struct {
	Name            string
	Columns         ColumnList
	HasNullable     bool
	IsAutoIncrement bool
}

UniqueKey is the combination of a key's name and columns

func (*UniqueKey) IsPrimary

func (this *UniqueKey) IsPrimary() bool

IsPrimary checks if this unique key is primary

func (*UniqueKey) Len

func (this *UniqueKey) Len() int

func (*UniqueKey) String

func (this *UniqueKey) String() string

type ValueComparisonSign

type ValueComparisonSign string
const (
	LessThanComparisonSign            ValueComparisonSign = "<"
	LessThanOrEqualsComparisonSign    ValueComparisonSign = "<="
	EqualsComparisonSign              ValueComparisonSign = "="
	GreaterThanOrEqualsComparisonSign ValueComparisonSign = ">="
	GreaterThanComparisonSign         ValueComparisonSign = ">"
	NotEqualsComparisonSign           ValueComparisonSign = "!="
)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL