function

package
v0.18.1 Latest Latest
Warning

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

Go to latest
Published: Apr 9, 2024 License: Apache-2.0 Imports: 51 Imported by: 1

Documentation

Index

Constants

View Source
const (
	// NumBytes counts the number of bytes in a string or binary content.
	NumBytes = CountType(false)
	// NumChars counts the number of characters in a string or binary content.
	NumChars = CountType(true)
)

Variables

View Source
var BuiltIns = []sql.Function{}/* 271 elements not displayed */

BuiltIns is the set of built-in functions any integrator can use

View Source
var ErrDivisionByZero = errors.NewKind("division by zero")
View Source
var ErrFunctionAlreadyRegistered = errors.NewKind("function '%s' is already registered")

ErrFunctionAlreadyRegistered is thrown when a function is already registered

View Source
var ErrIllegalLockNameArgType = errors.NewKind("Illegal parameter data type %s for operation '%s'")

ErrIllegalLockNameArgType is a kind of error that is thrown when the parameter passed as a lock name is not a string.

View Source
var ErrInvalidArgumentForLogarithm = errors.NewKind("invalid argument value for logarithm: %v")

ErrInvalidArgumentForLogarithm is returned when an invalid argument value is passed to a logarithm function

View Source
var ErrNegativeRepeatCount = errors.NewKind("negative Repeat count: %v")
View Source
var ErrTimeUnexpectedlyNil = errors.NewKind("time in function '%s' unexpectedly nil")

ErrTimeUnexpectedlyNil is thrown when a function encounters and unexpectedly nil time

View Source
var ErrTooHighPrecision = errors.NewKind("Too-big precision %d for '%s'. Maximum is %d.")
View Source
var ErrUintOverflow = errors.NewKind(
	"Unsigned integer too big to fit on signed integer")
View Source
var ErrUnknownType = errors.NewKind("function '%s' encountered unknown type %T")

ErrUnknownType is thrown when a function encounters and unknown type

View Source
var ErrUnsupportedType = errors.NewKind("unsupported type for greatest/least argument: %T")

ErrUnsupportedType is returned when an argument to Greatest or Latest is not numeric or string

Functions

func CreateNewGetLock

func CreateNewGetLock(ls *sql.LockSubsystem) func(e1, e2 sql.Expression) sql.Expression

CreateNewGetLock returns a new GetLock object

func GetLockingFuncs

func GetLockingFuncs(ls *sql.LockSubsystem) []sql.Function

func IsFreeLockFunc

func IsFreeLockFunc(_ *sql.Context, ls *sql.LockSubsystem, lockName string) (interface{}, error)

IsFreeLockFunc is the function logic that is executed when the is_free_lock function is called.

func IsUsedLockFunc

func IsUsedLockFunc(ctx *sql.Context, ls *sql.LockSubsystem, lockName string) (interface{}, error)

IsUsedLockFunc is the function logic that is executed when the is_used_lock function is called.

func NewAbsVal

func NewAbsVal(e sql.Expression) sql.Expression

NewAbsVal creates a new AbsVal expression.

func NewAcos

func NewAcos(arg sql.Expression) sql.Expression

NewAcos returns a new ACOS function expression

func NewAddDate added in v0.18.1

func NewAddDate(args ...sql.Expression) (sql.Expression, error)

NewAddDate returns a new function expression, or an error if one couldn't be created. The ADDDATE function is a synonym for DATE_ADD, with the one exception that if the second argument is NOT an explicitly declared interval, then the value is used and the interval period is assumed to be DAY. In either case, this function will actually return a *DateAdd struct.

func NewAscii

func NewAscii(arg sql.Expression) sql.Expression

func NewAsin

func NewAsin(arg sql.Expression) sql.Expression

NewAsin returns a new ASIN function expression

func NewAtan

func NewAtan(args ...sql.Expression) (sql.Expression, error)

NewAtan returns a new ATAN function expression

func NewBin

func NewBin(arg sql.Expression) sql.Expression

func NewBinToUUID added in v0.9.0

func NewBinToUUID(args ...sql.Expression) (sql.Expression, error)

func NewBitCount added in v0.18.0

func NewBitCount(arg sql.Expression) sql.Expression

NewBitCount creates a new Ceil expression.

func NewBitlength

func NewBitlength(arg sql.Expression) sql.Expression

func NewCeil

func NewCeil(num sql.Expression) sql.Expression

NewCeil creates a new Ceil expression.

func NewChar added in v0.18.0

func NewChar(args ...sql.Expression) (sql.Expression, error)

func NewCharLength

func NewCharLength(e sql.Expression) sql.Expression

NewCharLength returns a new CHAR_LENGTH function.

func NewCoalesce

func NewCoalesce(args ...sql.Expression) (sql.Expression, error)

NewCoalesce creates a new Coalesce sql.Expression.

func NewCoercibility added in v0.15.0

func NewCoercibility(e sql.Expression) sql.Expression

NewCoercibility creates a new Coercibility expression.

func NewCollation added in v0.15.0

func NewCollation(e sql.Expression) sql.Expression

NewCollation creates a new Collation expression.

func NewConcat

func NewConcat(args ...sql.Expression) (sql.Expression, error)

NewConcat creates a new Concat UDF.

func NewConcatWithSeparator

func NewConcatWithSeparator(args ...sql.Expression) (sql.Expression, error)

NewConcatWithSeparator creates a new NewConcatWithSeparator UDF.

func NewConnectionID

func NewConnectionID() sql.Expression

func NewConv added in v0.14.0

func NewConv(n, from, to sql.Expression) sql.Expression

NewConv returns a new Conv expression.

func NewConvertTz added in v0.11.0

func NewConvertTz(dt, fromTz, toTz sql.Expression) sql.Expression

NewConvertTz returns an implementation of the CONVERT_TZ() function.

func NewCos

func NewCos(arg sql.Expression) sql.Expression

NewCos returns a new COS function expression

func NewCot

func NewCot(arg sql.Expression) sql.Expression

NewCot returns a new COT function expression

func NewCrc32

func NewCrc32(arg sql.Expression) sql.Expression

NewCrc32 returns a new CRC32 function expression

func NewCurrDate

func NewCurrDate() sql.Expression

func NewCurrTime

func NewCurrTime(args ...sql.Expression) (sql.Expression, error)

func NewCurrentDate

func NewCurrentDate() sql.Expression

func NewCurrentUser

func NewCurrentUser() sql.Expression

func NewDatabase

func NewDatabase() sql.Expression

NewDatabase returns a new Database function

func NewDate

func NewDate(date sql.Expression) sql.Expression

NewDate returns a new Date node.

func NewDateAdd

func NewDateAdd(args ...sql.Expression) (sql.Expression, error)

NewDateAdd creates a new date add function.

func NewDateDiff added in v0.12.0

func NewDateDiff(expr1, expr2 sql.Expression) sql.Expression

NewDateDiff creates a new DATEDIFF() function.

func NewDateFormat

func NewDateFormat(ex, value sql.Expression) sql.Expression

NewDateFormat returns a new DateFormat UDF

func NewDateSub

func NewDateSub(args ...sql.Expression) (sql.Expression, error)

NewDateSub creates a new date add function.

func NewDatetime

func NewDatetime(args ...sql.Expression) (sql.Expression, error)

NewDatetime returns a DatetimeConversion instance to handle the sql function "datetime". This is not a standard mysql function, but provides a shorthand for datetime conversions.

func NewDay

func NewDay(date sql.Expression) sql.Expression

NewDay creates a new Day UDF.

func NewDayName

func NewDayName(arg sql.Expression) sql.Expression

func NewDayOfWeek

func NewDayOfWeek(date sql.Expression) sql.Expression

NewDayOfWeek creates a new DayOfWeek UDF.

func NewDayOfYear

func NewDayOfYear(date sql.Expression) sql.Expression

NewDayOfYear creates a new DayOfYear UDF.

func NewDegrees

func NewDegrees(arg sql.Expression) sql.Expression

NewDegrees returns a new DEGREES function expression

func NewElt added in v0.18.0

func NewElt(args ...sql.Expression) (sql.Expression, error)

NewElt creates a new Elt UDF.

func NewExp added in v0.18.0

func NewExp(arg sql.Expression) sql.Expression

func NewExtract added in v0.15.0

func NewExtract(e1, e2 sql.Expression) sql.Expression

NewExtract creates a new Extract expression.

func NewField added in v0.18.0

func NewField(args ...sql.Expression) (sql.Expression, error)

NewField creates a new Field UDF.

func NewFindInSet added in v0.15.0

func NewFindInSet(e1, e2 sql.Expression) sql.Expression

NewFindInSet creates a new FindInSet expression.

func NewFloor

func NewFloor(num sql.Expression) sql.Expression

NewFloor returns a new Floor expression.

func NewFormat added in v0.12.0

func NewFormat(args ...sql.Expression) (sql.Expression, error)

NewFormat returns a new Format expression.

func NewFoundRows added in v0.9.0

func NewFoundRows() sql.Expression

func NewFromBase64

func NewFromBase64(e sql.Expression) sql.Expression

NewFromBase64 creates a new FromBase64 expression.

func NewFromUnixtime added in v0.11.0

func NewFromUnixtime(arg sql.Expression) sql.Expression

func NewGreatest

func NewGreatest(args ...sql.Expression) (sql.Expression, error)

NewGreatest creates a new Greatest UDF

func NewHex

func NewHex(arg sql.Expression) sql.Expression

func NewHour

func NewHour(date sql.Expression) sql.Expression

NewHour creates a new Hour UDF.

func NewIf

func NewIf(expr, ifTrue, ifFalse sql.Expression) sql.Expression

NewIf returns a new IF UDF

func NewIfNull

func NewIfNull(ex, value sql.Expression) sql.Expression

NewIfNull returns a new IFNULL UDF

func NewInet6Aton added in v0.12.0

func NewInet6Aton(val sql.Expression) sql.Expression

func NewInet6Ntoa added in v0.12.0

func NewInet6Ntoa(val sql.Expression) sql.Expression

func NewInetAton added in v0.12.0

func NewInetAton(val sql.Expression) sql.Expression

func NewInetNtoa added in v0.12.0

func NewInetNtoa(val sql.Expression) sql.Expression

func NewInstr

func NewInstr(str, substr sql.Expression) sql.Expression

NewInstr creates a new instr UDF.

func NewIsBinary

func NewIsBinary(e sql.Expression) sql.Expression

NewIsBinary creates a new IsBinary expression.

func NewIsFreeLock

func NewIsFreeLock(ls *sql.LockSubsystem) sql.CreateFunc1Args

func NewIsIPv4 added in v0.12.0

func NewIsIPv4(val sql.Expression) sql.Expression

func NewIsIPv4Compat added in v0.12.0

func NewIsIPv4Compat(val sql.Expression) sql.Expression

func NewIsIPv4Mapped added in v0.12.0

func NewIsIPv4Mapped(val sql.Expression) sql.Expression

func NewIsIPv6 added in v0.12.0

func NewIsIPv6(val sql.Expression) sql.Expression

func NewIsNull added in v0.10.0

func NewIsNull(e sql.Expression) sql.Expression

NewIsNull creates a new IsNull expression.

func NewIsUUID added in v0.9.0

func NewIsUUID(arg sql.Expression) sql.Expression

func NewIsUsedLock

func NewIsUsedLock(ls *sql.LockSubsystem) sql.CreateFunc1Args

func NewLastInsertId added in v0.9.0

func NewLastInsertId(children ...sql.Expression) (sql.Expression, error)

func NewLastInsertUuid added in v0.18.1

func NewLastInsertUuid(children ...sql.Expression) (sql.Expression, error)

func NewLeast

func NewLeast(args ...sql.Expression) (sql.Expression, error)

NewLeast creates a new Least UDF

func NewLeft

func NewLeft(str, len sql.Expression) sql.Expression

NewLeft creates a new LEFT function.

func NewLeftPad added in v0.11.0

func NewLeftPad(e ...sql.Expression) (sql.Expression, error)

func NewLeftTrim added in v0.11.0

func NewLeftTrim(str sql.Expression) sql.Expression

func NewLength

func NewLength(e sql.Expression) sql.Expression

NewLength returns a new LENGTH function.

func NewLoadFile added in v0.11.0

func NewLoadFile(fileName sql.Expression) sql.Expression

NewLoadFile returns a LoadFile object for the LOAD_FILE() function.

func NewLocate added in v0.12.0

func NewLocate(exprs ...sql.Expression) (sql.Expression, error)

NewLocate returns a new Locate function.

func NewLog

func NewLog(args ...sql.Expression) (sql.Expression, error)

NewLog creates a new Log expression.

func NewLogBase

func NewLogBase(base float64, e sql.Expression) sql.Expression

NewLogBase creates a new LogBase expression.

func NewLogBaseFunc

func NewLogBaseFunc(base float64) func(e sql.Expression) sql.Expression

NewLogBaseFunc returns LogBase creator function with a specific base.

func NewLower

func NewLower(e sql.Expression) sql.Expression

NewLower creates a new Lower expression.

func NewMD5

func NewMD5(arg sql.Expression) sql.Expression

NewMD5 returns a new MD5 function expression

func NewMicrosecond

func NewMicrosecond(arg sql.Expression) sql.Expression

func NewMinute

func NewMinute(date sql.Expression) sql.Expression

NewMinute creates a new Minute UDF.

func NewMod added in v0.12.0

func NewMod(args ...sql.Expression) (sql.Expression, error)

NewMod returns a new MOD function expression

func NewMonth

func NewMonth(date sql.Expression) sql.Expression

NewMonth creates a new Month UDF.

func NewMonthName

func NewMonthName(arg sql.Expression) sql.Expression

func NewNow

func NewNow(args ...sql.Expression) (sql.Expression, error)

NewNow returns a new Now node.

func NewNullIf

func NewNullIf(ex1, ex2 sql.Expression) sql.Expression

NewNullIf returns a new NULLIF UDF

func NewOrd added in v0.18.0

func NewOrd(arg sql.Expression) sql.Expression

func NewPad

func NewPad(pType padType, args ...sql.Expression) (sql.Expression, error)

NewPad creates a new Pad expression.

func NewPi added in v0.18.0

func NewPi() sql.Expression

func NewPower

func NewPower(e1, e2 sql.Expression) sql.Expression

NewPower creates a new Power expression.

func NewQuarter added in v0.18.0

func NewQuarter(date sql.Expression) sql.Expression

NewQuarter creates a new Month UDF.

func NewRadians

func NewRadians(arg sql.Expression) sql.Expression

NewRadians returns a new RADIANS function expression

func NewRand

func NewRand(exprs ...sql.Expression) (sql.Expression, error)

NewRand creates a new Rand expression.

func NewRandomBytes added in v0.18.1

func NewRandomBytes(e sql.Expression) sql.Expression

NewRandomBytes returns a new RANDOM_BYTES function.

func NewRegexpLike added in v0.10.0

func NewRegexpLike(args ...sql.Expression) (sql.Expression, error)

NewRegexpLike creates a new RegexpLike expression.

func NewRegexpReplace added in v0.12.0

func NewRegexpReplace(args ...sql.Expression) (sql.Expression, error)

NewRegexpReplace creates a new RegexpReplace expression.

func NewReleaseAllLocks

func NewReleaseAllLocks(ls *sql.LockSubsystem) func() sql.Expression

func NewReleaseLock

func NewReleaseLock(ls *sql.LockSubsystem) sql.CreateFunc1Args

func NewRepeat

func NewRepeat(str sql.Expression, count sql.Expression) sql.Expression

NewRepeat creates a new Repeat expression.

func NewReplace

func NewReplace(str sql.Expression, fromStr sql.Expression, toStr sql.Expression) sql.Expression

NewReplace creates a new Replace expression.

func NewReverse

func NewReverse(e sql.Expression) sql.Expression

NewReverse creates a new Reverse expression.

func NewRight added in v0.12.0

func NewRight(str, len sql.Expression) sql.Expression

NewRight creates a new RIGHT function.

func NewRightPad added in v0.11.0

func NewRightPad(e ...sql.Expression) (sql.Expression, error)

func NewRightTrim added in v0.11.0

func NewRightTrim(str sql.Expression) sql.Expression

func NewRound

func NewRound(args ...sql.Expression) (sql.Expression, error)

NewRound returns a new Round expression.

func NewRowCount added in v0.9.0

func NewRowCount() sql.Expression

func NewSHA1

func NewSHA1(arg sql.Expression) sql.Expression

NewSHA1 returns a new SHA1 function expression

func NewSHA2

func NewSHA2(arg, count sql.Expression) sql.Expression

NewSHA2 returns a new SHA2 function expression

func NewSecond

func NewSecond(date sql.Expression) sql.Expression

NewSecond creates a new Second UDF.

func NewSign

func NewSign(arg sql.Expression) sql.Expression

NewSign returns a new SIGN function expression

func NewSin

func NewSin(arg sql.Expression) sql.Expression

NewSin returns a new SIN function expression

func NewSleep

func NewSleep(e sql.Expression) sql.Expression

NewSleep creates a new Sleep expression.

func NewSoundex

func NewSoundex(e sql.Expression) sql.Expression

NewSoundex creates a new Soundex expression.

func NewSpace added in v0.18.0

func NewSpace(arg sql.Expression) sql.Expression

func NewSqrt

func NewSqrt(e sql.Expression) sql.Expression

NewSqrt creates a new Sqrt expression.

func NewStrCmp added in v0.15.0

func NewStrCmp(e1, e2 sql.Expression) sql.Expression

NewStrCmp creates a new NewStrCmp UDF.

func NewStrToDate added in v0.11.0

func NewStrToDate(args ...sql.Expression) (sql.Expression, error)

NewStrToDate constructs a new function expression from the given child expressions.

func NewSubDate added in v0.18.0

func NewSubDate(args ...sql.Expression) (sql.Expression, error)

NewSubDate returns a new function expression, or an error if one couldn't be created. The SUBDATE function is a synonym for DATE_SUB, with the one exception that if the second argument is NOT an explicitly declared interval, then the value is used and the interval period is assumed to be DAY. In either case, this function will actually return a *DateSub struct.

func NewSubstring

func NewSubstring(args ...sql.Expression) (sql.Expression, error)

NewSubstring creates a new substring UDF.

func NewSubstringIndex

func NewSubstringIndex(str, delim, count sql.Expression) sql.Expression

NewSubstringIndex creates a new SubstringIndex UDF.

func NewSysdate added in v0.18.0

func NewSysdate(args ...sql.Expression) (sql.Expression, error)

NewSysdate returns a new SYSDATE() function, using the supplied |args| for an optional value for fractional second precision. The SYSDATE() function is a synonym for NOW(), but does NOT use the query's cached start time, and instead always returns the current time, even when executed multiple times in a query or stored procedure. https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_sysdate

func NewTan

func NewTan(arg sql.Expression) sql.Expression

NewTan returns a new TAN function expression

func NewTime added in v0.15.0

func NewTime(time sql.Expression) sql.Expression

NewTime returns a new Date node.

func NewTimeDiff

func NewTimeDiff(e1, e2 sql.Expression) sql.Expression

NewTimeDiff creates a new NewTimeDiff expression.

func NewTimeFormat added in v0.12.0

func NewTimeFormat(ex, value sql.Expression) sql.Expression

NewTimeFormat returns a new TimeFormat UDF

func NewTimeToSec

func NewTimeToSec(arg sql.Expression) sql.Expression

func NewTimestamp

func NewTimestamp(args ...sql.Expression) (sql.Expression, error)

func NewTimestampDiff added in v0.12.0

func NewTimestampDiff(u, e1, e2 sql.Expression) sql.Expression

NewTimestampDiff creates a new TIMESTAMPDIFF() function.

func NewToBase64

func NewToBase64(e sql.Expression) sql.Expression

NewToBase64 creates a new ToBase64 expression.

func NewTrim

func NewTrim(str sql.Expression, pat sql.Expression, dir string) sql.Expression

func NewUTCTimestamp

func NewUTCTimestamp(args ...sql.Expression) (sql.Expression, error)

NewUTCTimestamp returns a new UTCTimestamp node.

func NewUUIDFunc added in v0.9.0

func NewUUIDFunc() sql.Expression

func NewUUIDToBin added in v0.9.0

func NewUUIDToBin(args ...sql.Expression) (sql.Expression, error)

func NewUnhex

func NewUnhex(arg sql.Expression) sql.Expression

func NewUnixTimestamp

func NewUnixTimestamp(args ...sql.Expression) (sql.Expression, error)

func NewUpper

func NewUpper(e sql.Expression) sql.Expression

NewUpper creates a new Lower expression.

func NewUser

func NewUser() sql.Expression

func NewValues

func NewValues(col sql.Expression) sql.Expression

NewValues creates a new Values function.

func NewVersion

func NewVersion(versionPostfix string) func(...sql.Expression) (sql.Expression, error)

NewVersion creates a new Version UDF.

func NewWeek

func NewWeek(args ...sql.Expression) (sql.Expression, error)

NewWeek creates a new Week UDF

func NewWeekOfYear

func NewWeekOfYear(arg sql.Expression) sql.Expression

func NewWeekday

func NewWeekday(date sql.Expression) sql.Expression

NewWeekday creates a new Weekday UDF.

func NewYear

func NewYear(date sql.Expression) sql.Expression

NewYear creates a new Year UDF.

func NewYearWeek

func NewYearWeek(args ...sql.Expression) (sql.Expression, error)

NewYearWeek creates a new YearWeek UDF

func NoArgFuncWithChildren

func NoArgFuncWithChildren(fn sql.Expression, children []sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

func ReleaseLockFunc

func ReleaseLockFunc(ctx *sql.Context, ls *sql.LockSubsystem, lockName string) (interface{}, error)

ReleaseLockFunc is the function logic that is executed when the release_lock function is called.

func SessionTimeZone added in v0.18.0

func SessionTimeZone(ctx *sql.Context) (string, error)

SessionTimeZone returns a MySQL timezone offset string for the value of @@session_time_zone. If the session timezone is set to SYSTEM, then the system timezone offset is calculated and returned.

Types

type AbsVal

type AbsVal struct {
	expression.UnaryExpression
}

AbsVal is a function that takes the absolute value of a number

func (*AbsVal) CollationCoercibility added in v0.15.0

func (*AbsVal) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*AbsVal) Description added in v0.12.0

func (t *AbsVal) Description() string

Description implements sql.FunctionExpression

func (*AbsVal) Eval

func (t *AbsVal) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*AbsVal) FunctionName

func (t *AbsVal) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*AbsVal) IsNullable

func (t *AbsVal) IsNullable() bool

IsNullable implements the Expression interface.

func (*AbsVal) String

func (t *AbsVal) String() string

String implements the fmt.Stringer interface.

func (*AbsVal) Type

func (t *AbsVal) Type() sql.Type

Type implements the Expression interface.

func (*AbsVal) WithChildren

func (t *AbsVal) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Acos

type Acos struct {
	*UnaryFunc
}

func (*Acos) CollationCoercibility added in v0.15.0

func (*Acos) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Acos) Description added in v0.12.0

func (a *Acos) Description() string

Description implements sql.FunctionExpression

func (*Acos) Eval

func (a *Acos) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*Acos) WithChildren

func (a *Acos) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type AppendFuncWrapper

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

func (AppendFuncWrapper) Append

func (af AppendFuncWrapper) Append(bytes []byte, t time.Time) []byte

type Ascii

type Ascii struct {
	*UnaryFunc
}

Ascii implements the sql function "ascii" which returns the numeric value of the leftmost character

func (*Ascii) CollationCoercibility added in v0.15.0

func (*Ascii) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Ascii) Description added in v0.12.0

func (a *Ascii) Description() string

Description implements sql.FunctionExpression

func (*Ascii) Eval

func (a *Ascii) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface

func (*Ascii) WithChildren

func (a *Ascii) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the sql.Expression interface

type Asin

type Asin struct {
	*UnaryFunc
}

func (*Asin) CollationCoercibility added in v0.15.0

func (*Asin) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Asin) Description added in v0.12.0

func (a *Asin) Description() string

Description implements sql.FunctionExpression

func (*Asin) Eval

func (a *Asin) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*Asin) WithChildren

func (a *Asin) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Atan

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

func (*Atan) Children added in v0.18.0

func (a *Atan) Children() []sql.Expression

Children implements sql.Expression

func (*Atan) CollationCoercibility added in v0.15.0

func (*Atan) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Atan) Description added in v0.12.0

func (a *Atan) Description() string

Description implements sql.FunctionExpression

func (*Atan) Eval

func (a *Atan) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*Atan) FunctionName added in v0.18.0

func (a *Atan) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Atan) IsNullable added in v0.18.0

func (a *Atan) IsNullable() bool

IsNullable implements sql.Expression

func (*Atan) Resolved added in v0.18.0

func (a *Atan) Resolved() bool

Resolved implements sql.Expression

func (*Atan) String added in v0.18.0

func (a *Atan) String() string

String implements sql.Expression

func (*Atan) Type added in v0.18.0

func (a *Atan) Type() sql.Type

Type implements sql.Expression

func (*Atan) WithChildren

func (a *Atan) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Bin

type Bin struct {
	*UnaryFunc
}

Bin implements the sql function "bin" which returns the binary representation of a number

func (*Bin) CollationCoercibility added in v0.15.0

func (*Bin) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Bin) Description added in v0.12.0

func (b *Bin) Description() string

Description implements sql.FunctionExpression

func (*Bin) Eval

func (h *Bin) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface

func (*Bin) FunctionName added in v0.12.0

func (b *Bin) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Bin) WithChildren

func (h *Bin) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the sql.Expression interface

type BinToUUID added in v0.9.0

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

func (BinToUUID) Children added in v0.9.0

func (bu BinToUUID) Children() []sql.Expression

Children returns the children expressions of this expression.

func (BinToUUID) CollationCoercibility added in v0.15.0

func (BinToUUID) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (BinToUUID) Description added in v0.12.0

func (bu BinToUUID) Description() string

Description implements sql.FunctionExpression

func (BinToUUID) Eval added in v0.9.0

func (bu BinToUUID) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (BinToUUID) FunctionName added in v0.9.0

func (bu BinToUUID) FunctionName() string

FunctionName implements sql.FunctionExpression

func (BinToUUID) IsNullable added in v0.9.0

func (bu BinToUUID) IsNullable() bool

IsNullable returns whether the expression can be null.

func (BinToUUID) Resolved added in v0.9.0

func (bu BinToUUID) Resolved() bool

func (BinToUUID) String added in v0.9.0

func (bu BinToUUID) String() string

func (BinToUUID) Type added in v0.9.0

func (bu BinToUUID) Type() sql.Type

func (BinToUUID) WithChildren added in v0.9.0

func (bu BinToUUID) WithChildren(children ...sql.Expression) (sql.Expression, error)

type BitCount added in v0.18.0

type BitCount struct {
	*UnaryFunc
}

BitCount returns the smallest integer value not less than X.

func (*BitCount) CollationCoercibility added in v0.18.0

func (b *BitCount) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*BitCount) Description added in v0.18.0

func (b *BitCount) Description() string

Description implements sql.FunctionExpression

func (*BitCount) Eval added in v0.18.0

func (b *BitCount) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*BitCount) FunctionName added in v0.18.0

func (b *BitCount) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*BitCount) String added in v0.18.0

func (b *BitCount) String() string

func (*BitCount) Type added in v0.18.0

func (b *BitCount) Type() sql.Type

Type implements the Expression interface.

func (*BitCount) WithChildren added in v0.18.0

func (b *BitCount) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Bitlength

type Bitlength struct {
	*UnaryFunc
}

Bitlength implements the sql function "bit_length" which returns the data length of the argument in bits

func (*Bitlength) CollationCoercibility added in v0.15.0

func (*Bitlength) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Bitlength) Description added in v0.12.0

func (b *Bitlength) Description() string

Description implements sql.FunctionExpression

func (*Bitlength) Eval

func (h *Bitlength) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface

func (*Bitlength) FunctionName added in v0.12.0

func (b *Bitlength) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Bitlength) WithChildren

func (h *Bitlength) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the sql.Expression interface

type Ceil

type Ceil struct {
	expression.UnaryExpression
}

Ceil returns the smallest integer value not less than X.

func (*Ceil) CollationCoercibility added in v0.15.0

func (*Ceil) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Ceil) Description added in v0.12.0

func (c *Ceil) Description() string

Description implements sql.FunctionExpression

func (*Ceil) Eval

func (c *Ceil) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Ceil) FunctionName

func (c *Ceil) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Ceil) String

func (c *Ceil) String() string

func (*Ceil) Type

func (c *Ceil) Type() sql.Type

Type implements the Expression interface.

func (*Ceil) WithChildren

func (c *Ceil) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Char added in v0.18.0

type Char struct {
	Collation sql.CollationID
	// contains filtered or unexported fields
}

Char implements the sql function "char" which returns the character for each integer passed

func (*Char) Children added in v0.18.0

func (c *Char) Children() []sql.Expression

Children implements sql.Expression

func (*Char) CollationCoercibility added in v0.18.0

func (c *Char) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Char) Description added in v0.18.0

func (c *Char) Description() string

Description implements sql.FunctionExpression

func (*Char) Eval added in v0.18.0

func (c *Char) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface

func (*Char) FunctionName added in v0.18.0

func (c *Char) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Char) IsNullable added in v0.18.0

func (c *Char) IsNullable() bool

IsNullable implements sql.Expression

func (*Char) Resolved added in v0.18.0

func (c *Char) Resolved() bool

Resolved implements sql.FunctionExpression

func (*Char) String added in v0.18.0

func (c *Char) String() string

String implements sql.Expression

func (*Char) Type added in v0.18.0

func (c *Char) Type() sql.Type

Type implements sql.Expression

func (*Char) WithChildren added in v0.18.0

func (c *Char) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the sql.Expression interface

type Coalesce

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

Coalesce returns the first non-NULL value in the list, or NULL if there are no non-NULL values.

func (*Coalesce) Children

func (c *Coalesce) Children() []sql.Expression

Children implements the sql.Expression interface.

func (*Coalesce) CollationCoercibility added in v0.15.0

func (c *Coalesce) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Coalesce) DebugString added in v0.18.0

func (c *Coalesce) DebugString() string

func (*Coalesce) Description added in v0.12.0

func (c *Coalesce) Description() string

Description implements sql.FunctionExpression

func (*Coalesce) Eval

func (c *Coalesce) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface. The function evaluates the first non-nil argument. If the value is nil, then we keep going, otherwise we return the first non-nil value.

func (*Coalesce) FunctionName

func (c *Coalesce) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Coalesce) IsNullable

func (c *Coalesce) IsNullable() bool

IsNullable implements the sql.Expression interface. Returns true if all arguments are nil or of the first non-nil argument is nullable, otherwise false.

func (*Coalesce) Resolved

func (c *Coalesce) Resolved() bool

Resolved implements the sql.Expression interface. The function checks if first non-nil argument is resolved.

func (*Coalesce) String

func (c *Coalesce) String() string

func (*Coalesce) Type

func (c *Coalesce) Type() sql.Type

Type implements the sql.Expression interface. The return type of Type() is the aggregated type of the argument types.

func (*Coalesce) WithChildren

func (*Coalesce) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Coercibility added in v0.15.0

type Coercibility struct {
	expression.UnaryExpression
}

Coercibility is a function that returns the coercibility of the inner expression.

func (*Coercibility) CollationCoercibility added in v0.15.0

func (*Coercibility) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Coercibility) Description added in v0.15.0

func (c *Coercibility) Description() string

Description implements sql.FunctionExpression

func (*Coercibility) Eval added in v0.15.0

func (c *Coercibility) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression.

func (*Coercibility) FunctionName added in v0.15.0

func (c *Coercibility) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Coercibility) String added in v0.15.0

func (c *Coercibility) String() string

String implements the fmt.Stringer interface.

func (*Coercibility) Type added in v0.15.0

func (c *Coercibility) Type() sql.Type

Type implements the Expression interface.

func (*Coercibility) WithChildren added in v0.15.0

func (c *Coercibility) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Collation added in v0.15.0

type Collation struct {
	expression.UnaryExpression
}

Collation is a function that returns the collation of the inner expression.

func (*Collation) CollationCoercibility added in v0.15.0

func (*Collation) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Collation) Description added in v0.15.0

func (c *Collation) Description() string

Description implements sql.FunctionExpression

func (*Collation) Eval added in v0.15.0

func (c *Collation) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression.

func (*Collation) FunctionName added in v0.15.0

func (c *Collation) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Collation) String added in v0.15.0

func (c *Collation) String() string

String implements the fmt.Stringer interface.

func (*Collation) Type added in v0.15.0

func (c *Collation) Type() sql.Type

Type implements the Expression interface.

func (*Collation) WithChildren added in v0.15.0

func (c *Collation) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Concat

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

Concat joins several strings together.

func (*Concat) Children

func (c *Concat) Children() []sql.Expression

Children implements the Expression interface.

func (*Concat) CollationCoercibility added in v0.15.0

func (c *Concat) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Concat) DebugString added in v0.15.0

func (c *Concat) DebugString() string

func (*Concat) Description added in v0.12.0

func (c *Concat) Description() string

Description implements sql.FunctionExpression

func (*Concat) Eval

func (c *Concat) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Concat) FunctionName

func (c *Concat) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Concat) IsNullable

func (c *Concat) IsNullable() bool

IsNullable implements the Expression interface.

func (*Concat) Resolved

func (c *Concat) Resolved() bool

Resolved implements the Expression interface.

func (*Concat) String

func (c *Concat) String() string

func (*Concat) Type

func (c *Concat) Type() sql.Type

Type implements the Expression interface.

func (*Concat) WithChildren

func (*Concat) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type ConcatWithSeparator

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

ConcatWithSeparator joins several strings together. The first argument is the separator for the rest of the arguments. The separator is added between the strings to be concatenated. The separator can be a string, as can the rest of the arguments. If the separator is NULL, the result is NULL.

func (*ConcatWithSeparator) Children

func (f *ConcatWithSeparator) Children() []sql.Expression

Children implements the Expression interface.

func (*ConcatWithSeparator) CollationCoercibility added in v0.15.0

func (c *ConcatWithSeparator) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*ConcatWithSeparator) Description added in v0.12.0

func (f *ConcatWithSeparator) Description() string

Description implements sql.FunctionExpression

func (*ConcatWithSeparator) Eval

func (f *ConcatWithSeparator) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*ConcatWithSeparator) FunctionName

func (f *ConcatWithSeparator) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*ConcatWithSeparator) IsNullable

func (f *ConcatWithSeparator) IsNullable() bool

IsNullable implements the Expression interface.

func (*ConcatWithSeparator) Resolved

func (f *ConcatWithSeparator) Resolved() bool

Resolved implements the Expression interface.

func (*ConcatWithSeparator) String

func (f *ConcatWithSeparator) String() string

func (*ConcatWithSeparator) Type

func (f *ConcatWithSeparator) Type() sql.Type

Type implements the Expression interface.

func (*ConcatWithSeparator) WithChildren

func (*ConcatWithSeparator) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type ConnectionID

type ConnectionID struct {
	NoArgFunc
}

func (ConnectionID) CollationCoercibility added in v0.15.0

func (ConnectionID) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (ConnectionID) Description added in v0.12.0

func (c ConnectionID) Description() string

Description implements sql.FunctionExpression

func (ConnectionID) Eval

func (c ConnectionID) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (ConnectionID) FunctionName added in v0.12.0

func (c ConnectionID) FunctionName() string

FunctionName implements sql.FunctionExpression

func (ConnectionID) IsNonDeterministic added in v0.12.0

func (c ConnectionID) IsNonDeterministic() bool

func (ConnectionID) WithChildren

func (c ConnectionID) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Conv added in v0.14.0

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

Conv function converts numbers between different number bases. Returns a string representation of the number N, converted from base from_base to base to_base.

func (*Conv) Children added in v0.14.0

func (c *Conv) Children() []sql.Expression

Children implements the Expression interface.

func (*Conv) CollationCoercibility added in v0.15.0

func (*Conv) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Conv) Description added in v0.14.0

func (c *Conv) Description() string

Description implements sql.FunctionExpression

func (*Conv) Eval added in v0.14.0

func (c *Conv) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Conv) FunctionName added in v0.14.0

func (c *Conv) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Conv) IsNullable added in v0.14.0

func (c *Conv) IsNullable() bool

IsNullable implements the Expression interface.

func (*Conv) Resolved added in v0.14.0

func (c *Conv) Resolved() bool

Resolved implements the Expression interface.

func (*Conv) String added in v0.14.0

func (c *Conv) String() string

func (*Conv) Type added in v0.14.0

func (c *Conv) Type() sql.Type

Type implements the Expression interface.

func (*Conv) WithChildren added in v0.14.0

func (c *Conv) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type ConvertTz added in v0.11.0

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

func (*ConvertTz) Children added in v0.11.0

func (c *ConvertTz) Children() []sql.Expression

Children implements the sql.Expression interface.

func (*ConvertTz) CollationCoercibility added in v0.15.0

func (*ConvertTz) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*ConvertTz) Description added in v0.12.0

func (c *ConvertTz) Description() string

Description implements the sql.FunctionExpression interface.

func (*ConvertTz) Eval added in v0.11.0

func (c *ConvertTz) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface.

func (*ConvertTz) FunctionName added in v0.11.0

func (c *ConvertTz) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*ConvertTz) IsNullable added in v0.11.0

func (c *ConvertTz) IsNullable() bool

IsNullable implements the sql.Expression interface.

func (*ConvertTz) Resolved added in v0.11.0

func (c *ConvertTz) Resolved() bool

Resolved implements the sql.Expression interface.

func (*ConvertTz) String added in v0.11.0

func (c *ConvertTz) String() string

String implements the sql.Expression interface.

func (*ConvertTz) Type added in v0.11.0

func (c *ConvertTz) Type() sql.Type

Type implements the sql.Expression interface.

func (*ConvertTz) WithChildren added in v0.11.0

func (c *ConvertTz) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the sql.Expression interface.

type Cos

type Cos struct {
	*UnaryFunc
}

func (*Cos) CollationCoercibility added in v0.15.0

func (*Cos) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Cos) Description added in v0.12.0

func (s *Cos) Description() string

Description implements sql.FunctionExpression

func (*Cos) Eval

func (s *Cos) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*Cos) WithChildren

func (c *Cos) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Cot

type Cot struct {
	*UnaryFunc
}

func (*Cot) CollationCoercibility added in v0.15.0

func (*Cot) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Cot) Description added in v0.12.0

func (c *Cot) Description() string

Description implements sql.FunctionExpression

func (*Cot) Eval

func (c *Cot) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*Cot) WithChildren

func (c *Cot) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type CountType

type CountType bool

CountType is the kind of length count.

type Crc32

type Crc32 struct {
	*UnaryFunc
}

func (*Crc32) CollationCoercibility added in v0.15.0

func (*Crc32) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Crc32) Description added in v0.12.0

func (c *Crc32) Description() string

Description implements sql.FunctionExpression

func (*Crc32) Eval

func (c *Crc32) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*Crc32) WithChildren

func (c *Crc32) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type CurrDate

type CurrDate struct {
	NoArgFunc
}

func (CurrDate) CollationCoercibility added in v0.15.0

func (CurrDate) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (CurrDate) Description added in v0.12.0

func (c CurrDate) Description() string

Description implements sql.FunctionExpression

func (CurrDate) Eval

func (c CurrDate) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (CurrDate) IsNonDeterministic added in v0.12.0

func (c CurrDate) IsNonDeterministic() bool

func (CurrDate) WithChildren

func (c CurrDate) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type CurrTime

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

func (*CurrTime) Children added in v0.18.0

func (c *CurrTime) Children() []sql.Expression

Children implements the sql.Expression interface.

func (*CurrTime) CollationCoercibility added in v0.15.0

func (*CurrTime) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*CurrTime) Description added in v0.12.0

func (c *CurrTime) Description() string

Description implements sql.FunctionExpression

func (*CurrTime) Eval

func (c *CurrTime) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*CurrTime) FunctionName added in v0.18.0

func (c *CurrTime) FunctionName() string

FunctionName implements sql.FunctionExpression

func (CurrTime) IsNonDeterministic added in v0.12.0

func (c CurrTime) IsNonDeterministic() bool

func (*CurrTime) IsNullable added in v0.18.0

func (c *CurrTime) IsNullable() bool

IsNullable implements the sql.Expression interface.

func (*CurrTime) Resolved added in v0.18.0

func (c *CurrTime) Resolved() bool

Resolved implements the sql.Expression interface.

func (*CurrTime) String added in v0.18.0

func (c *CurrTime) String() string

String implements the sql.Expression interface.

func (*CurrTime) Type added in v0.18.0

func (c *CurrTime) Type() sql.Type

Type implements the sql.Expression interface.

func (*CurrTime) WithChildren

func (c *CurrTime) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Database

type Database struct{}

Database implements the DATABASE() function

func (*Database) Children

func (db *Database) Children() []sql.Expression

Children implements the sql.Expression interface.

func (*Database) CollationCoercibility added in v0.15.0

func (*Database) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Database) Description added in v0.12.0

func (db *Database) Description() string

Description implements sql.FunctionExpression

func (*Database) Eval

func (db *Database) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface.

func (*Database) FunctionName

func (db *Database) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Database) IsNonDeterministic added in v0.12.0

func (db *Database) IsNonDeterministic() bool

func (*Database) IsNullable

func (db *Database) IsNullable() bool

IsNullable implements the sql.Expression interface. The function returns always true

func (*Database) Resolved

func (db *Database) Resolved() bool

Resolved implements the sql.Expression interface.

func (*Database) String

func (db *Database) String() string

func (*Database) Type

func (db *Database) Type() sql.Type

Type implements the sql.Expression (sql.LongText)

func (*Database) WithChildren

func (db *Database) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Date

type Date struct {
	expression.UnaryExpression
}

Date a function takes the DATE part out from a datetime expression.

func (*Date) CollationCoercibility added in v0.15.0

func (*Date) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Date) Description added in v0.12.0

func (d *Date) Description() string

Description implements sql.FunctionExpression

func (*Date) Eval

func (d *Date) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Date) FunctionName

func (d *Date) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Date) String

func (d *Date) String() string

func (*Date) Type

func (d *Date) Type() sql.Type

Type implements the Expression interface.

func (*Date) WithChildren

func (d *Date) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type DateAdd

type DateAdd struct {
	Date     sql.Expression
	Interval *expression.Interval
}

DateAdd adds an interval to a date.

func (*DateAdd) Children

func (d *DateAdd) Children() []sql.Expression

Children implements the sql.Expression interface.

func (*DateAdd) CollationCoercibility added in v0.15.0

func (*DateAdd) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*DateAdd) Description added in v0.12.0

func (d *DateAdd) Description() string

Description implements sql.FunctionExpression

func (*DateAdd) Eval

func (d *DateAdd) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface.

func (*DateAdd) FunctionName

func (d *DateAdd) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*DateAdd) IsNullable

func (d *DateAdd) IsNullable() bool

IsNullable implements the sql.Expression interface.

func (*DateAdd) Resolved

func (d *DateAdd) Resolved() bool

Resolved implements the sql.Expression interface.

func (*DateAdd) String

func (d *DateAdd) String() string

func (*DateAdd) Type

func (d *DateAdd) Type() sql.Type

Type implements the sql.Expression interface.

func (*DateAdd) WithChildren

func (d *DateAdd) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type DateDiff added in v0.12.0

type DateDiff struct {
	expression.BinaryExpressionStub
}

DateDiff returns expr1 − expr2 expressed as a value in days from one date to the other.

func (*DateDiff) CollationCoercibility added in v0.15.0

func (*DateDiff) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*DateDiff) Description added in v0.12.0

func (d *DateDiff) Description() string

Description implements sql.FunctionExpression

func (*DateDiff) Eval added in v0.12.0

func (d *DateDiff) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface.

func (*DateDiff) FunctionName added in v0.12.0

func (d *DateDiff) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*DateDiff) String added in v0.12.0

func (d *DateDiff) String() string

func (*DateDiff) Type added in v0.12.0

func (d *DateDiff) Type() sql.Type

Type implements the sql.Expression interface.

func (*DateDiff) WithChildren added in v0.12.0

func (d *DateDiff) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type DateFormat

type DateFormat struct {
	expression.BinaryExpressionStub
}

DateFormat function returns a string representation of the date specified in the format specified

func (*DateFormat) CollationCoercibility added in v0.15.0

func (*DateFormat) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*DateFormat) Description added in v0.12.0

func (f *DateFormat) Description() string

Description implements sql.FunctionExpression

func (*DateFormat) Eval

func (f *DateFormat) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*DateFormat) FunctionName

func (f *DateFormat) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*DateFormat) IsNullable

func (f *DateFormat) IsNullable() bool

IsNullable implements the Expression interface.

func (*DateFormat) String

func (f *DateFormat) String() string

func (*DateFormat) Type

func (f *DateFormat) Type() sql.Type

Type implements the Expression interface.

func (*DateFormat) WithChildren

func (f *DateFormat) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type DateSub

type DateSub struct {
	Date     sql.Expression
	Interval *expression.Interval
}

DateSub subtracts an interval from a date.

func (*DateSub) Children

func (d *DateSub) Children() []sql.Expression

Children implements the sql.Expression interface.

func (*DateSub) CollationCoercibility added in v0.15.0

func (*DateSub) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*DateSub) Description added in v0.12.0

func (d *DateSub) Description() string

Description implements sql.FunctionExpression

func (*DateSub) Eval

func (d *DateSub) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface.

func (*DateSub) FunctionName

func (d *DateSub) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*DateSub) IsNullable

func (d *DateSub) IsNullable() bool

IsNullable implements the sql.Expression interface.

func (*DateSub) Resolved

func (d *DateSub) Resolved() bool

Resolved implements the sql.Expression interface.

func (*DateSub) String

func (d *DateSub) String() string

func (*DateSub) Type

func (d *DateSub) Type() sql.Type

Type implements the sql.Expression interface.

func (*DateSub) WithChildren

func (d *DateSub) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type DatetimeConversion

type DatetimeConversion struct {
	Date sql.Expression
}

DatetimeConversion is a shorthand function for CONVERT(expr, DATETIME)

func (*DatetimeConversion) Children

func (t *DatetimeConversion) Children() []sql.Expression

func (*DatetimeConversion) CollationCoercibility added in v0.15.0

func (*DatetimeConversion) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*DatetimeConversion) Description added in v0.12.0

func (t *DatetimeConversion) Description() string

Description implements sql.FunctionExpression

func (*DatetimeConversion) Eval

func (t *DatetimeConversion) Eval(ctx *sql.Context, r sql.Row) (interface{}, error)

func (*DatetimeConversion) FunctionName

func (t *DatetimeConversion) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*DatetimeConversion) IsNullable

func (t *DatetimeConversion) IsNullable() bool

func (*DatetimeConversion) Resolved

func (t *DatetimeConversion) Resolved() bool

func (*DatetimeConversion) String

func (t *DatetimeConversion) String() string

func (*DatetimeConversion) Type

func (t *DatetimeConversion) Type() sql.Type

func (*DatetimeConversion) WithChildren

func (t *DatetimeConversion) WithChildren(children ...sql.Expression) (sql.Expression, error)

type Day

type Day struct {
	expression.UnaryExpression
}

Day is a function that returns the day of a date.

func (*Day) CollationCoercibility added in v0.15.0

func (*Day) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Day) Description added in v0.12.0

func (d *Day) Description() string

Description implements sql.FunctionExpression

func (*Day) Eval

func (d *Day) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Day) FunctionName

func (d *Day) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Day) String

func (d *Day) String() string

func (*Day) Type

func (d *Day) Type() sql.Type

Type implements the Expression interface.

func (*Day) WithChildren

func (d *Day) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type DayName

type DayName struct {
	*UnaryFunc
}

DayName implements the DAYNAME function

func (*DayName) CollationCoercibility added in v0.15.0

func (*DayName) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*DayName) Description added in v0.12.0

func (d *DayName) Description() string

Description implements sql.FunctionExpression

func (*DayName) Eval

func (d *DayName) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*DayName) FunctionName added in v0.12.0

func (d *DayName) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*DayName) WithChildren

func (d *DayName) WithChildren(children ...sql.Expression) (sql.Expression, error)

type DayOfWeek

type DayOfWeek struct {
	expression.UnaryExpression
}

DayOfWeek is a function that returns the day of the week from a date where 1 = Sunday, ..., 7 = Saturday.

func (*DayOfWeek) CollationCoercibility added in v0.15.0

func (*DayOfWeek) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*DayOfWeek) Description added in v0.12.0

func (d *DayOfWeek) Description() string

Description implements sql.FunctionExpression

func (*DayOfWeek) Eval

func (d *DayOfWeek) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*DayOfWeek) FunctionName

func (d *DayOfWeek) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*DayOfWeek) String

func (d *DayOfWeek) String() string

func (*DayOfWeek) Type

func (d *DayOfWeek) Type() sql.Type

Type implements the Expression interface.

func (*DayOfWeek) WithChildren

func (d *DayOfWeek) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type DayOfYear

type DayOfYear struct {
	expression.UnaryExpression
}

DayOfYear is a function that returns the day of the year from a date.

func (*DayOfYear) CollationCoercibility added in v0.15.0

func (*DayOfYear) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*DayOfYear) Description added in v0.12.0

func (d *DayOfYear) Description() string

Description implements sql.FunctionExpression

func (*DayOfYear) Eval

func (d *DayOfYear) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*DayOfYear) FunctionName

func (d *DayOfYear) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*DayOfYear) String

func (d *DayOfYear) String() string

func (*DayOfYear) Type

func (d *DayOfYear) Type() sql.Type

Type implements the Expression interface.

func (*DayOfYear) WithChildren

func (d *DayOfYear) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Degrees

type Degrees struct {
	*UnaryFunc
}

func (*Degrees) CollationCoercibility added in v0.15.0

func (*Degrees) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Degrees) Description added in v0.12.0

func (d *Degrees) Description() string

Description implements sql.FunctionExpression

func (*Degrees) Eval

func (d *Degrees) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*Degrees) FunctionName added in v0.12.0

func (d *Degrees) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Degrees) WithChildren

func (d *Degrees) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Elt added in v0.18.0

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

Elt joins several strings together.

func (*Elt) Children added in v0.18.0

func (e *Elt) Children() []sql.Expression

Children implements the Expression interface.

func (*Elt) CollationCoercibility added in v0.18.0

func (e *Elt) CollationCoercibility(ctx *sql.Context) (sql.CollationID, byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Elt) Description added in v0.18.0

func (e *Elt) Description() string

Description implements sql.FunctionExpression

func (*Elt) Eval added in v0.18.0

func (e *Elt) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Elt) FunctionName added in v0.18.0

func (e *Elt) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Elt) IsNullable added in v0.18.0

func (e *Elt) IsNullable() bool

IsNullable implements the Expression interface.

func (*Elt) Resolved added in v0.18.0

func (e *Elt) Resolved() bool

Resolved implements the Expression interface.

func (*Elt) String added in v0.18.0

func (e *Elt) String() string

String implements the Stringer interface.

func (*Elt) Type added in v0.18.0

func (e *Elt) Type() sql.Type

Type implements the Expression interface.

func (*Elt) WithChildren added in v0.18.0

func (*Elt) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Exp added in v0.18.0

type Exp struct {
	*UnaryFunc
}

func (*Exp) CollationCoercibility added in v0.18.0

func (e *Exp) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Exp) Description added in v0.18.0

func (e *Exp) Description() string

Description implements sql.FunctionExpression

func (*Exp) Eval added in v0.18.0

func (e *Exp) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Exp) Type added in v0.18.0

func (e *Exp) Type() sql.Type

Type implements the Expression interface.

func (*Exp) WithChildren added in v0.18.0

func (e *Exp) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Extract added in v0.15.0

type Extract struct {
	expression.BinaryExpressionStub
}

Extract takes out the specified unit(s) from the time expression.

func (*Extract) CollationCoercibility added in v0.15.0

func (*Extract) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Extract) Description added in v0.15.0

func (td *Extract) Description() string

Description implements sql.FunctionExpression

func (*Extract) Eval added in v0.15.0

func (td *Extract) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Extract) FunctionName added in v0.15.0

func (td *Extract) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Extract) String added in v0.15.0

func (td *Extract) String() string

func (*Extract) Type added in v0.15.0

func (td *Extract) Type() sql.Type

Type implements the Expression interface.

func (*Extract) WithChildren added in v0.15.0

func (td *Extract) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Field added in v0.18.0

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

Field joins several strings together.

func (*Field) Children added in v0.18.0

func (f *Field) Children() []sql.Expression

Children implements the Expression interface.

func (*Field) CollationCoercibility added in v0.18.0

func (f *Field) CollationCoercibility(ctx *sql.Context) (sql.CollationID, byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Field) Description added in v0.18.0

func (f *Field) Description() string

Description implements sql.FunctionExpression

func (*Field) Eval added in v0.18.0

func (f *Field) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Field) FunctionName added in v0.18.0

func (f *Field) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Field) IsNullable added in v0.18.0

func (f *Field) IsNullable() bool

IsNullable implements the Expression interface.

func (*Field) Resolved added in v0.18.0

func (f *Field) Resolved() bool

Resolved implements the Expression interface.

func (*Field) String added in v0.18.0

func (f *Field) String() string

String implements the Stringer interface.

func (*Field) Type added in v0.18.0

func (f *Field) Type() sql.Type

Type implements the Expression interface.

func (*Field) WithChildren added in v0.18.0

func (*Field) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type FindInSet added in v0.15.0

type FindInSet struct {
	expression.BinaryExpressionStub
}

FindInSet takes out the specified unit(s) from the time expression.

func (*FindInSet) CollationCoercibility added in v0.15.0

func (*FindInSet) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*FindInSet) Description added in v0.15.0

func (f *FindInSet) Description() string

Description implements sql.FunctionExpression

func (*FindInSet) Eval added in v0.15.0

func (f *FindInSet) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*FindInSet) FunctionName added in v0.15.0

func (f *FindInSet) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*FindInSet) String added in v0.15.0

func (f *FindInSet) String() string

func (*FindInSet) Type added in v0.15.0

func (f *FindInSet) Type() sql.Type

Type implements the Expression interface.

func (*FindInSet) WithChildren added in v0.15.0

func (f *FindInSet) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Floor

type Floor struct {
	expression.UnaryExpression
}

Floor returns the biggest integer value not less than X.

func (*Floor) CollationCoercibility added in v0.15.0

func (*Floor) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Floor) Description added in v0.12.0

func (f *Floor) Description() string

Description implements sql.FunctionExpression

func (*Floor) Eval

func (f *Floor) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Floor) FunctionName

func (f *Floor) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Floor) String

func (f *Floor) String() string

func (*Floor) Type

func (f *Floor) Type() sql.Type

Type implements the Expression interface.

func (*Floor) WithChildren

func (f *Floor) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Format added in v0.12.0

type Format struct {
	NumValue         sql.Expression
	NumDecimalPlaces sql.Expression
	Locale           sql.Expression
}

Format function returns a result of NumValue rounded to NumDecimalPlaces as a string.

func (*Format) Children added in v0.12.0

func (f *Format) Children() []sql.Expression

Children implements the Expression interface.

func (*Format) CollationCoercibility added in v0.15.0

func (*Format) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Format) Description added in v0.12.0

func (f *Format) Description() string

Description implements sql.FunctionExpression

func (*Format) Eval added in v0.12.0

func (f *Format) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Format) FunctionName added in v0.12.0

func (f *Format) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Format) IsNullable added in v0.12.0

func (f *Format) IsNullable() bool

IsNullable implements the Expression interface.

func (*Format) Resolved added in v0.12.0

func (f *Format) Resolved() bool

Resolved implements the Expression interface.

func (*Format) String added in v0.12.0

func (f *Format) String() string

func (*Format) Type added in v0.12.0

func (f *Format) Type() sql.Type

Type implements the Expression interface.

func (*Format) WithChildren added in v0.12.0

func (f *Format) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type FoundRows added in v0.9.0

type FoundRows struct{}

FoundRows implements the FOUND_ROWS() function

func (FoundRows) Children added in v0.9.0

func (r FoundRows) Children() []sql.Expression

Children implements sql.Expression

func (FoundRows) CollationCoercibility added in v0.15.0

func (FoundRows) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (FoundRows) Description added in v0.12.0

func (r FoundRows) Description() string

Description implements sql.Expression

func (FoundRows) Eval added in v0.9.0

func (r FoundRows) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (FoundRows) FunctionName added in v0.9.0

func (r FoundRows) FunctionName() string

FunctionName implements sql.FunctionExpression

func (FoundRows) IsNonDeterministic added in v0.12.0

func (r FoundRows) IsNonDeterministic() bool

func (FoundRows) IsNullable added in v0.9.0

func (r FoundRows) IsNullable() bool

IsNullable implements sql.Expression

func (FoundRows) Resolved added in v0.9.0

func (r FoundRows) Resolved() bool

Resolved implements sql.Expression

func (FoundRows) String added in v0.9.0

func (r FoundRows) String() string

String implements sql.Expression

func (FoundRows) Type added in v0.9.0

func (r FoundRows) Type() sql.Type

Type implements sql.Expression

func (FoundRows) WithChildren added in v0.9.0

func (r FoundRows) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type FromBase64

type FromBase64 struct {
	expression.UnaryExpression
}

FromBase64 is a function to decode a Base64-formatted string using the same dialect that MySQL's FROM_BASE64 uses

func (*FromBase64) CollationCoercibility added in v0.15.0

func (*FromBase64) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*FromBase64) Description added in v0.12.0

func (t *FromBase64) Description() string

Description implements sql.FunctionExpression

func (*FromBase64) Eval

func (t *FromBase64) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*FromBase64) FunctionName

func (t *FromBase64) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*FromBase64) IsNullable

func (t *FromBase64) IsNullable() bool

IsNullable implements the Expression interface.

func (*FromBase64) String

func (t *FromBase64) String() string

String implements the fmt.Stringer interface.

func (*FromBase64) Type

func (t *FromBase64) Type() sql.Type

Type implements the Expression interface.

func (*FromBase64) WithChildren

func (t *FromBase64) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type FromUnixtime added in v0.11.0

type FromUnixtime struct {
	*UnaryFunc
}

FromUnixtime converts the argument to a datetime.

func (*FromUnixtime) CollationCoercibility added in v0.15.0

func (*FromUnixtime) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*FromUnixtime) Description added in v0.12.0

func (r *FromUnixtime) Description() string

Description implements sql.FunctionExpression

func (*FromUnixtime) Eval added in v0.11.0

func (r *FromUnixtime) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*FromUnixtime) WithChildren added in v0.11.0

func (r *FromUnixtime) WithChildren(children ...sql.Expression) (sql.Expression, error)

type GetLock

type GetLock struct {
	expression.BinaryExpressionStub
	// contains filtered or unexported fields
}

GetLock is a SQL function implementing get_lock

func (*GetLock) CollationCoercibility added in v0.15.0

func (*GetLock) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*GetLock) Description added in v0.12.0

func (gl *GetLock) Description() string

Description implements sql.FunctionExpression

func (*GetLock) Eval

func (gl *GetLock) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*GetLock) FunctionName

func (gl *GetLock) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*GetLock) IsNullable

func (gl *GetLock) IsNullable() bool

IsNullable implements the Expression interface.

func (*GetLock) String

func (gl *GetLock) String() string

String implements the fmt.Stringer interface.

func (*GetLock) Type

func (gl *GetLock) Type() sql.Type

Type implements the Expression interface.

func (*GetLock) WithChildren

func (gl *GetLock) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Greatest

type Greatest struct {
	Args []sql.Expression
	// contains filtered or unexported fields
}

Greatest returns the argument with the greatest numerical or string value. It allows for numeric (ints and floats) and string arguments and will return the used type when all arguments are of the same type or floats if there are numerically convertible strings or integers mixed with floats. When ints or floats are mixed with non numerically convertible strings, those are ignored.

func (*Greatest) Children

func (f *Greatest) Children() []sql.Expression

Children implements the Expression interface.

func (*Greatest) Description added in v0.12.0

func (f *Greatest) Description() string

Description implements sql.FunctionExpression

func (*Greatest) Eval

func (f *Greatest) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Greatest) FunctionName

func (f *Greatest) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Greatest) IsNullable

func (f *Greatest) IsNullable() bool

IsNullable implements the Expression interface.

func (*Greatest) Resolved

func (f *Greatest) Resolved() bool

Resolved implements the Expression interface.

func (*Greatest) String

func (f *Greatest) String() string

func (*Greatest) Type

func (f *Greatest) Type() sql.Type

Type implements the Expression interface.

func (*Greatest) WithChildren

func (f *Greatest) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Hex

type Hex struct {
	*UnaryFunc
}

Hex implements the sql function "hex" which returns the hexadecimal representation of the string or numeric value

func (*Hex) CollationCoercibility added in v0.15.0

func (*Hex) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Hex) Description added in v0.12.0

func (h *Hex) Description() string

Description implements sql.FunctionExpression

func (*Hex) Eval

func (h *Hex) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface

func (*Hex) WithChildren

func (h *Hex) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the sql.Expression interface

type Hour

type Hour struct {
	expression.UnaryExpression
}

Hour is a function that returns the hour of a date.

func (*Hour) CollationCoercibility added in v0.15.0

func (*Hour) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Hour) Description added in v0.12.0

func (h *Hour) Description() string

Description implements sql.FunctionExpression

func (*Hour) Eval

func (h *Hour) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Hour) FunctionName

func (h *Hour) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Hour) String

func (h *Hour) String() string

func (*Hour) Type

func (h *Hour) Type() sql.Type

Type implements the Expression interface.

func (*Hour) WithChildren

func (h *Hour) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type If

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

If function returns the second value if the first is true, the third value otherwise.

func (*If) Children

func (f *If) Children() []sql.Expression

func (*If) CollationCoercibility added in v0.15.0

func (f *If) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*If) Description added in v0.12.0

func (f *If) Description() string

Description implements sql.FunctionExpression

func (*If) Eval

func (f *If) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*If) FunctionName

func (f *If) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*If) IsNullable

func (f *If) IsNullable() bool

IsNullable implements the Expression interface.

func (*If) Resolved

func (f *If) Resolved() bool

func (*If) String

func (f *If) String() string

func (*If) Type

func (f *If) Type() sql.Type

Type implements the Expression interface.

func (*If) WithChildren

func (f *If) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type IfNull

type IfNull struct {
	expression.BinaryExpressionStub
}

IfNull function returns the specified value IF the expression is NULL, otherwise return the expression.

func (*IfNull) CollationCoercibility added in v0.15.0

func (f *IfNull) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*IfNull) Description added in v0.12.0

func (f *IfNull) Description() string

Description implements sql.FunctionExpression

func (*IfNull) Eval

func (f *IfNull) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*IfNull) FunctionName

func (f *IfNull) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*IfNull) IsNullable

func (f *IfNull) IsNullable() bool

IsNullable implements the Expression interface.

func (*IfNull) String

func (f *IfNull) String() string

func (*IfNull) Type

func (f *IfNull) Type() sql.Type

Type implements the Expression interface.

func (*IfNull) WithChildren

func (f *IfNull) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Inet6Aton added in v0.12.0

type Inet6Aton struct {
	expression.UnaryExpression
}

func (*Inet6Aton) CollationCoercibility added in v0.15.0

func (*Inet6Aton) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Inet6Aton) Description added in v0.12.0

func (i *Inet6Aton) Description() string

Description implements sql.FunctionExpression

func (*Inet6Aton) Eval added in v0.12.0

func (i *Inet6Aton) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*Inet6Aton) FunctionName added in v0.12.0

func (i *Inet6Aton) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Inet6Aton) String added in v0.12.0

func (i *Inet6Aton) String() string

func (*Inet6Aton) Type added in v0.12.0

func (i *Inet6Aton) Type() sql.Type

func (*Inet6Aton) WithChildren added in v0.12.0

func (i *Inet6Aton) WithChildren(children ...sql.Expression) (sql.Expression, error)

type Inet6Ntoa added in v0.12.0

type Inet6Ntoa struct {
	expression.UnaryExpression
}

func (*Inet6Ntoa) CollationCoercibility added in v0.15.0

func (*Inet6Ntoa) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Inet6Ntoa) Description added in v0.12.0

func (i *Inet6Ntoa) Description() string

Description implements sql.FunctionExpression

func (*Inet6Ntoa) Eval added in v0.12.0

func (i *Inet6Ntoa) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*Inet6Ntoa) FunctionName added in v0.12.0

func (i *Inet6Ntoa) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Inet6Ntoa) String added in v0.12.0

func (i *Inet6Ntoa) String() string

func (*Inet6Ntoa) Type added in v0.12.0

func (i *Inet6Ntoa) Type() sql.Type

func (*Inet6Ntoa) WithChildren added in v0.12.0

func (i *Inet6Ntoa) WithChildren(children ...sql.Expression) (sql.Expression, error)

type InetAton added in v0.12.0

type InetAton struct {
	expression.UnaryExpression
}

func (*InetAton) CollationCoercibility added in v0.15.0

func (*InetAton) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*InetAton) Description added in v0.12.0

func (i *InetAton) Description() string

Description implements sql.FunctionExpression

func (*InetAton) Eval added in v0.12.0

func (i *InetAton) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*InetAton) FunctionName added in v0.12.0

func (i *InetAton) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*InetAton) String added in v0.12.0

func (i *InetAton) String() string

func (*InetAton) Type added in v0.12.0

func (i *InetAton) Type() sql.Type

func (*InetAton) WithChildren added in v0.12.0

func (i *InetAton) WithChildren(children ...sql.Expression) (sql.Expression, error)

type InetNtoa added in v0.12.0

type InetNtoa struct {
	expression.UnaryExpression
}

func (*InetNtoa) CollationCoercibility added in v0.15.0

func (*InetNtoa) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*InetNtoa) Description added in v0.12.0

func (i *InetNtoa) Description() string

Description implements sql.FunctionExpression

func (*InetNtoa) Eval added in v0.12.0

func (i *InetNtoa) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*InetNtoa) FunctionName added in v0.12.0

func (i *InetNtoa) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*InetNtoa) String added in v0.12.0

func (i *InetNtoa) String() string

func (*InetNtoa) Type added in v0.12.0

func (i *InetNtoa) Type() sql.Type

func (*InetNtoa) WithChildren added in v0.12.0

func (i *InetNtoa) WithChildren(children ...sql.Expression) (sql.Expression, error)

type Instr

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

func (Instr) Children

func (i Instr) Children() []sql.Expression

Children implements the Expression interface.

func (Instr) CollationCoercibility added in v0.15.0

func (Instr) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (Instr) Description added in v0.12.0

func (i Instr) Description() string

Description implements sql.FunctionExpression

func (Instr) Eval

func (i Instr) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (Instr) FunctionName

func (i Instr) FunctionName() string

FunctionName implements sql.FunctionExpression

func (Instr) IsNullable

func (i Instr) IsNullable() bool

IsNullable implements the Expression interface.

func (Instr) Resolved

func (i Instr) Resolved() bool

Resolved implements the Expression interface.

func (Instr) String

func (i Instr) String() string

func (Instr) Type

func (Instr) Type() sql.Type

Type implements the Expression interface.

func (Instr) WithChildren

func (i Instr) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type IsBinary

type IsBinary struct {
	expression.UnaryExpression
}

IsBinary is a function that returns whether a blob is binary or not.

func (*IsBinary) CollationCoercibility added in v0.15.0

func (*IsBinary) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*IsBinary) Description added in v0.12.0

func (ib *IsBinary) Description() string

Description implements sql.FunctionExpression

func (*IsBinary) Eval

func (ib *IsBinary) Eval(
	ctx *sql.Context,
	row sql.Row,
) (interface{}, error)

Eval implements the Expression interface.

func (*IsBinary) FunctionName

func (ib *IsBinary) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*IsBinary) String

func (ib *IsBinary) String() string

func (*IsBinary) Type

func (ib *IsBinary) Type() sql.Type

Type implements the Expression interface.

func (*IsBinary) WithChildren

func (ib *IsBinary) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type IsFreeLock

type IsFreeLock struct {
	NamedLockFunction
}

func (*IsFreeLock) CollationCoercibility added in v0.15.0

func (*IsFreeLock) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*IsFreeLock) Description added in v0.12.0

func (i *IsFreeLock) Description() string

Description implements sql.FunctionExpression

func (*IsFreeLock) Eval

func (i *IsFreeLock) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*IsFreeLock) WithChildren

func (i *IsFreeLock) WithChildren(children ...sql.Expression) (sql.Expression, error)

type IsIPv4 added in v0.12.0

type IsIPv4 struct {
	expression.UnaryExpression
}

func (*IsIPv4) CollationCoercibility added in v0.15.0

func (*IsIPv4) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*IsIPv4) Description added in v0.12.0

func (i *IsIPv4) Description() string

Description implements sql.FunctionExpression

func (*IsIPv4) Eval added in v0.12.0

func (i *IsIPv4) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface

func (*IsIPv4) FunctionName added in v0.12.0

func (i *IsIPv4) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*IsIPv4) String added in v0.12.0

func (i *IsIPv4) String() string

func (*IsIPv4) Type added in v0.12.0

func (i *IsIPv4) Type() sql.Type

func (*IsIPv4) WithChildren added in v0.12.0

func (i *IsIPv4) WithChildren(children ...sql.Expression) (sql.Expression, error)

type IsIPv4Compat added in v0.12.0

type IsIPv4Compat struct {
	expression.UnaryExpression
}

func (*IsIPv4Compat) CollationCoercibility added in v0.15.0

func (*IsIPv4Compat) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*IsIPv4Compat) Description added in v0.12.0

func (i *IsIPv4Compat) Description() string

Description implements sql.FunctionExpression

func (*IsIPv4Compat) Eval added in v0.12.0

func (i *IsIPv4Compat) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface

func (*IsIPv4Compat) FunctionName added in v0.12.0

func (i *IsIPv4Compat) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*IsIPv4Compat) String added in v0.12.0

func (i *IsIPv4Compat) String() string

func (*IsIPv4Compat) Type added in v0.12.0

func (i *IsIPv4Compat) Type() sql.Type

func (*IsIPv4Compat) WithChildren added in v0.12.0

func (i *IsIPv4Compat) WithChildren(children ...sql.Expression) (sql.Expression, error)

type IsIPv4Mapped added in v0.12.0

type IsIPv4Mapped struct {
	expression.UnaryExpression
}

func (*IsIPv4Mapped) CollationCoercibility added in v0.15.0

func (*IsIPv4Mapped) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*IsIPv4Mapped) Description added in v0.12.0

func (i *IsIPv4Mapped) Description() string

Description implements sql.FunctionExpression

func (*IsIPv4Mapped) Eval added in v0.12.0

func (i *IsIPv4Mapped) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface

func (*IsIPv4Mapped) FunctionName added in v0.12.0

func (i *IsIPv4Mapped) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*IsIPv4Mapped) String added in v0.12.0

func (i *IsIPv4Mapped) String() string

func (*IsIPv4Mapped) Type added in v0.12.0

func (i *IsIPv4Mapped) Type() sql.Type

func (*IsIPv4Mapped) WithChildren added in v0.12.0

func (i *IsIPv4Mapped) WithChildren(children ...sql.Expression) (sql.Expression, error)

type IsIPv6 added in v0.12.0

type IsIPv6 struct {
	expression.UnaryExpression
}

func (*IsIPv6) CollationCoercibility added in v0.15.0

func (*IsIPv6) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*IsIPv6) Description added in v0.12.0

func (i *IsIPv6) Description() string

Description implements sql.FunctionExpression

func (*IsIPv6) Eval added in v0.12.0

func (i *IsIPv6) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface

func (*IsIPv6) FunctionName added in v0.12.0

func (i *IsIPv6) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*IsIPv6) String added in v0.12.0

func (i *IsIPv6) String() string

func (*IsIPv6) Type added in v0.12.0

func (i *IsIPv6) Type() sql.Type

func (*IsIPv6) WithChildren added in v0.12.0

func (i *IsIPv6) WithChildren(children ...sql.Expression) (sql.Expression, error)

type IsNull added in v0.10.0

type IsNull struct {
	expression.UnaryExpression
}

IsNull is a function that returns whether a value is null or not.

func (*IsNull) CollationCoercibility added in v0.15.0

func (*IsNull) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*IsNull) Description added in v0.12.0

func (ib *IsNull) Description() string

Description implements sql.FunctionExpression

func (*IsNull) Eval added in v0.10.0

func (ib *IsNull) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*IsNull) FunctionName added in v0.10.0

func (ib *IsNull) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*IsNull) String added in v0.10.0

func (ib *IsNull) String() string

func (*IsNull) Type added in v0.10.0

func (ib *IsNull) Type() sql.Type

Type implements the Expression interface.

func (*IsNull) WithChildren added in v0.10.0

func (ib *IsNull) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type IsUUID added in v0.9.0

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

func (IsUUID) Children added in v0.9.0

func (u IsUUID) Children() []sql.Expression

Children returns the children expressions of this expression.

func (IsUUID) CollationCoercibility added in v0.15.0

func (IsUUID) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (IsUUID) Description added in v0.12.0

func (u IsUUID) Description() string

Description implements sql.FunctionExpression

func (IsUUID) Eval added in v0.9.0

func (u IsUUID) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (IsUUID) FunctionName added in v0.9.0

func (u IsUUID) FunctionName() string

FunctionName implements sql.FunctionExpression

func (IsUUID) IsNullable added in v0.9.0

func (u IsUUID) IsNullable() bool

IsNullable returns whether the expression can be null.

func (IsUUID) Resolved added in v0.9.0

func (u IsUUID) Resolved() bool

func (IsUUID) String added in v0.9.0

func (u IsUUID) String() string

func (IsUUID) Type added in v0.9.0

func (u IsUUID) Type() sql.Type

func (IsUUID) WithChildren added in v0.9.0

func (u IsUUID) WithChildren(children ...sql.Expression) (sql.Expression, error)

type IsUsedLock

type IsUsedLock struct {
	NamedLockFunction
}

func (*IsUsedLock) CollationCoercibility added in v0.15.0

func (*IsUsedLock) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*IsUsedLock) Description added in v0.12.0

func (i *IsUsedLock) Description() string

Description implements sql.FunctionExpression

func (*IsUsedLock) Eval

func (i *IsUsedLock) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*IsUsedLock) WithChildren

func (i *IsUsedLock) WithChildren(children ...sql.Expression) (sql.Expression, error)

type LastInsertId added in v0.9.0

type LastInsertId struct {
	expression.UnaryExpression
}

LastInsertId implements the LAST_INSERT_ID() function https://dev.mysql.com/doc/refman/8.0/en/information-functions.html#function_last-insert-id

func (LastInsertId) Children added in v0.9.0

func (r LastInsertId) Children() []sql.Expression

Children implements sql.Expression

func (LastInsertId) CollationCoercibility added in v0.15.0

func (LastInsertId) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (LastInsertId) Description added in v0.12.0

func (r LastInsertId) Description() string

Description implements sql.FunctionExpression

func (LastInsertId) Eval added in v0.9.0

func (r LastInsertId) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (LastInsertId) FunctionName added in v0.9.0

func (r LastInsertId) FunctionName() string

FunctionName implements sql.FunctionExpression

func (LastInsertId) IsNonDeterministic added in v0.12.0

func (r LastInsertId) IsNonDeterministic() bool

func (LastInsertId) IsNullable added in v0.9.0

func (r LastInsertId) IsNullable() bool

IsNullable implements sql.Expression

func (LastInsertId) Resolved added in v0.9.0

func (r LastInsertId) Resolved() bool

Resolved implements sql.Expression

func (LastInsertId) String added in v0.9.0

func (r LastInsertId) String() string

String implements sql.Expression

func (LastInsertId) Type added in v0.9.0

func (r LastInsertId) Type() sql.Type

Type implements sql.Expression

func (LastInsertId) WithChildren added in v0.9.0

func (r LastInsertId) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type LastInsertUuid added in v0.18.1

type LastInsertUuid struct{}

LastInsertUuid implements the LAST_INSERT_UUID() function. This function is NOT a standard function in MySQL, but is a useful analogue to LAST_INSERT_ID() if customers are inserting UUIDs into a table.

func (LastInsertUuid) Children added in v0.18.1

func (l LastInsertUuid) Children() []sql.Expression

func (LastInsertUuid) CollationCoercibility added in v0.18.1

func (l LastInsertUuid) CollationCoercibility(_ *sql.Context) (collation sql.CollationID, coercibility byte)

func (LastInsertUuid) Description added in v0.18.1

func (l LastInsertUuid) Description() string

func (LastInsertUuid) Eval added in v0.18.1

func (l LastInsertUuid) Eval(ctx *sql.Context, _ sql.Row) (interface{}, error)

func (LastInsertUuid) FunctionName added in v0.18.1

func (l LastInsertUuid) FunctionName() string

func (LastInsertUuid) IsNullable added in v0.18.1

func (l LastInsertUuid) IsNullable() bool

func (LastInsertUuid) Resolved added in v0.18.1

func (l LastInsertUuid) Resolved() bool

func (LastInsertUuid) String added in v0.18.1

func (l LastInsertUuid) String() string

func (LastInsertUuid) Type added in v0.18.1

func (l LastInsertUuid) Type() sql.Type

func (LastInsertUuid) WithChildren added in v0.18.1

func (l LastInsertUuid) WithChildren(children ...sql.Expression) (sql.Expression, error)

type Least

type Least struct {
	Args []sql.Expression
	// contains filtered or unexported fields
}

Least returns the argument with the least numerical or string value. It allows for numeric (ints anf floats) and string arguments and will return the used type when all arguments are of the same type or floats if there are numerically convertible strings or integers mixed with floats. When ints or floats are mixed with non numerically convertible strings, those are ignored.

func (*Least) Children

func (f *Least) Children() []sql.Expression

Children implements the Expression interface.

func (*Least) Description added in v0.12.0

func (f *Least) Description() string

Description implements sql.FunctionExpression

func (*Least) Eval

func (f *Least) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Least) FunctionName

func (f *Least) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Least) IsNullable

func (f *Least) IsNullable() bool

IsNullable implements the Expression interface.

func (*Least) Resolved

func (f *Least) Resolved() bool

Resolved implements the Expression interface.

func (*Least) String

func (f *Least) String() string

func (*Least) Type

func (f *Least) Type() sql.Type

Type implements the Expression interface.

func (*Least) WithChildren

func (f *Least) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Left

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

Left is a function that returns the first N characters of a string expression.

func (Left) Children

func (l Left) Children() []sql.Expression

Children implements the Expression interface.

func (Left) CollationCoercibility added in v0.15.0

func (l Left) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (Left) Description added in v0.12.0

func (l Left) Description() string

Description implements sql.FunctionExpression

func (Left) Eval

func (l Left) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (Left) FunctionName

func (l Left) FunctionName() string

FunctionName implements sql.FunctionExpression

func (Left) IsNullable

func (l Left) IsNullable() bool

IsNullable implements the Expression interface.

func (Left) Resolved

func (l Left) Resolved() bool

Resolved implements the Expression interface.

func (Left) String

func (l Left) String() string

func (Left) Type

func (Left) Type() sql.Type

Type implements the Expression interface.

func (Left) WithChildren

func (l Left) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type LeftTrim added in v0.12.0

type LeftTrim struct {
	expression.UnaryExpression
}

func (*LeftTrim) CollationCoercibility added in v0.15.0

func (t *LeftTrim) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*LeftTrim) Description added in v0.12.0

func (t *LeftTrim) Description() string

Description implements sql.FunctionExpression

func (*LeftTrim) Eval added in v0.12.0

func (t *LeftTrim) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*LeftTrim) FunctionName added in v0.12.0

func (t *LeftTrim) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*LeftTrim) IsNullable added in v0.12.0

func (t *LeftTrim) IsNullable() bool

func (*LeftTrim) String added in v0.12.0

func (t *LeftTrim) String() string

func (*LeftTrim) Type added in v0.12.0

func (t *LeftTrim) Type() sql.Type

func (*LeftTrim) WithChildren added in v0.12.0

func (t *LeftTrim) WithChildren(children ...sql.Expression) (sql.Expression, error)

type Length

type Length struct {
	expression.UnaryExpression
	CountType CountType
}

Length returns the length of a string or binary content, either in bytes or characters.

func (*Length) CollationCoercibility added in v0.15.0

func (*Length) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Length) DebugString added in v0.9.0

func (l *Length) DebugString() string

func (*Length) Description added in v0.12.0

func (l *Length) Description() string

Description implements sql.FunctionExpression

func (*Length) Eval

func (l *Length) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface.

func (*Length) FunctionName

func (l *Length) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Length) String

func (l *Length) String() string

func (*Length) Type

func (l *Length) Type() sql.Type

Type implements the sql.Expression interface.

func (*Length) WithChildren

func (l *Length) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type LoadFile added in v0.11.0

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

func (*LoadFile) Children added in v0.11.0

func (l *LoadFile) Children() []sql.Expression

Children implements sql.Expression.

func (*LoadFile) CollationCoercibility added in v0.15.0

func (*LoadFile) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*LoadFile) Description added in v0.12.0

func (l *LoadFile) Description() string

Description implements sql.FunctionExpression

func (*LoadFile) Eval added in v0.11.0

func (l *LoadFile) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

TODO: Allow FILE privileges for GRANT Eval implements sql.Expression.

func (*LoadFile) FunctionName added in v0.11.0

func (l *LoadFile) FunctionName() string

FunctionName implements sql.FunctionExpression.

func (*LoadFile) IsNullable added in v0.11.0

func (l *LoadFile) IsNullable() bool

IsNullable implements sql.Expression.

func (*LoadFile) Resolved added in v0.11.0

func (l *LoadFile) Resolved() bool

Resolved implements sql.Expression.

func (*LoadFile) String added in v0.11.0

func (l *LoadFile) String() string

String implements sql.Expression.

func (*LoadFile) Type added in v0.11.0

func (l *LoadFile) Type() sql.Type

Type implements sql.Expression.

func (*LoadFile) WithChildren added in v0.11.0

func (l *LoadFile) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression.

type Locate added in v0.12.0

type Locate struct {
	expression.NaryExpression
}

Locate returns the position of the first occurrence of a substring in a string. If the substring is not found within the original string, this function returns 0. This function performs a case-insensitive search.

func (*Locate) CollationCoercibility added in v0.15.0

func (*Locate) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Locate) DebugString added in v0.12.0

func (l *Locate) DebugString() string

func (*Locate) Description added in v0.12.0

func (l *Locate) Description() string

Description implements sql.FunctionExpression

func (*Locate) Eval added in v0.12.0

func (l *Locate) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface.

func (*Locate) FunctionName added in v0.12.0

func (l *Locate) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Locate) String added in v0.12.0

func (l *Locate) String() string

func (*Locate) Type added in v0.12.0

func (l *Locate) Type() sql.Type

Type implements the sql.Expression interface.

func (*Locate) WithChildren added in v0.12.0

func (l *Locate) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Log

type Log struct {
	expression.BinaryExpressionStub
}

Log is a function that returns the natural logarithm of a value.

func (*Log) Children

func (l *Log) Children() []sql.Expression

Children implements the Expression interface.

func (*Log) CollationCoercibility added in v0.15.0

func (*Log) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Log) Description added in v0.12.0

func (l *Log) Description() string

Description implements sql.FunctionExpression

func (*Log) Eval

func (l *Log) Eval(
	ctx *sql.Context,
	row sql.Row,
) (interface{}, error)

Eval implements the Expression interface.

func (*Log) FunctionName

func (l *Log) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Log) IsNullable

func (l *Log) IsNullable() bool

IsNullable implements the Expression interface.

func (*Log) String

func (l *Log) String() string

func (*Log) Type

func (l *Log) Type() sql.Type

Type returns the resultant type of the function.

func (*Log) WithChildren

func (l *Log) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type LogBase

type LogBase struct {
	expression.UnaryExpression
	// contains filtered or unexported fields
}

LogBase is a function that returns the logarithm of a value with a specific base.

func (*LogBase) CollationCoercibility added in v0.15.0

func (*LogBase) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*LogBase) Description added in v0.12.0

func (l *LogBase) Description() string

Description implements sql.FunctionExpression

func (*LogBase) Eval

func (l *LogBase) Eval(
	ctx *sql.Context,
	row sql.Row,
) (interface{}, error)

Eval implements the Expression interface.

func (*LogBase) FunctionName

func (l *LogBase) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*LogBase) IsNullable

func (l *LogBase) IsNullable() bool

IsNullable implements the sql.Expression interface.

func (*LogBase) String

func (l *LogBase) String() string

func (*LogBase) Type

func (l *LogBase) Type() sql.Type

Type returns the resultant type of the function.

func (*LogBase) WithChildren

func (l *LogBase) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Lower

type Lower struct {
	expression.UnaryExpression
}

Lower is a function that returns the lowercase of the text provided.

func (*Lower) CollationCoercibility added in v0.15.0

func (l *Lower) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Lower) Description added in v0.12.0

func (l *Lower) Description() string

Description implements sql.FunctionExpression

func (*Lower) Eval

func (l *Lower) Eval(
	ctx *sql.Context,
	row sql.Row,
) (interface{}, error)

Eval implements the Expression interface.

func (*Lower) FunctionName

func (l *Lower) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Lower) String

func (l *Lower) String() string

func (*Lower) Type

func (l *Lower) Type() sql.Type

Type implements the Expression interface.

func (*Lower) WithChildren

func (l *Lower) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type MD5

type MD5 struct {
	*UnaryFunc
}

MD5 function returns the MD5 hash of the input. https://dev.mysql.com/doc/refman/8.0/en/encryption-functions.html#function_md5

func (*MD5) CollationCoercibility added in v0.15.0

func (*MD5) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*MD5) Description added in v0.12.0

func (f *MD5) Description() string

Description implements sql.FunctionExpression

func (*MD5) Eval

func (f *MD5) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*MD5) WithChildren

func (f *MD5) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Microsecond

type Microsecond struct {
	*UnaryDatetimeFunc
}

Microsecond implements the MICROSECOND function

func (*Microsecond) CollationCoercibility added in v0.15.0

func (*Microsecond) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Microsecond) Description added in v0.12.0

func (m *Microsecond) Description() string

Description implements sql.FunctionExpression

func (*Microsecond) Eval

func (m *Microsecond) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*Microsecond) WithChildren

func (m *Microsecond) WithChildren(children ...sql.Expression) (sql.Expression, error)

type Minute

type Minute struct {
	expression.UnaryExpression
}

Minute is a function that returns the minute of a date.

func (*Minute) CollationCoercibility added in v0.15.0

func (*Minute) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Minute) Description added in v0.12.0

func (m *Minute) Description() string

Description implements sql.FunctionExpression

func (*Minute) Eval

func (m *Minute) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Minute) FunctionName

func (m *Minute) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Minute) String

func (m *Minute) String() string

func (*Minute) Type

func (m *Minute) Type() sql.Type

Type implements the Expression interface.

func (*Minute) WithChildren

func (m *Minute) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Month

type Month struct {
	expression.UnaryExpression
}

Month is a function that returns the month of a date.

func (*Month) CollationCoercibility added in v0.15.0

func (*Month) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Month) Description added in v0.12.0

func (m *Month) Description() string

Description implements sql.FunctionExpression

func (*Month) Eval

func (m *Month) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Month) FunctionName

func (m *Month) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Month) String

func (m *Month) String() string

func (*Month) Type

func (m *Month) Type() sql.Type

Type implements the Expression interface.

func (*Month) WithChildren

func (m *Month) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type MonthName

type MonthName struct {
	*UnaryDatetimeFunc
}

MonthName implements the MONTHNAME function

func (*MonthName) CollationCoercibility added in v0.15.0

func (*MonthName) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*MonthName) Description added in v0.12.0

func (d *MonthName) Description() string

Description implements sql.FunctionExpression

func (*MonthName) Eval

func (d *MonthName) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*MonthName) WithChildren

func (d *MonthName) WithChildren(children ...sql.Expression) (sql.Expression, error)

type NamedLockFunction

type NamedLockFunction struct {
	expression.UnaryExpression
	// contains filtered or unexported fields
}

NamedLockFunction is a sql function that takes just the name of a lock as an argument

func (*NamedLockFunction) FunctionName

func (nl *NamedLockFunction) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*NamedLockFunction) GetLockName

func (nl *NamedLockFunction) GetLockName(ctx *sql.Context, row sql.Row) (*string, error)

Eval implements the Expression interface.

func (*NamedLockFunction) IsNullable

func (nl *NamedLockFunction) IsNullable() bool

IsNullable implements the Expression interface.

func (*NamedLockFunction) String

func (nl *NamedLockFunction) String() string

String implements the fmt.Stringer interface.

func (*NamedLockFunction) Type

func (nl *NamedLockFunction) Type() sql.Type

Type implements the Expression interface.

type NoArgFunc

type NoArgFunc struct {
	Name    string
	SQLType sql.Type
}

NoArgFunc is a helper type to reduce boilerplate in functions that take no arguments. Implements most of sql.FunctionExpression.

func (NoArgFunc) Children

func (fn NoArgFunc) Children() []sql.Expression

Children implements the Expression interface.

func (NoArgFunc) FunctionName

func (fn NoArgFunc) FunctionName() string

FunctionName implements sql.FunctionExpression

func (NoArgFunc) IsNullable

func (fn NoArgFunc) IsNullable() bool

IsNullable implements the Expression interface.

func (NoArgFunc) Resolved

func (fn NoArgFunc) Resolved() bool

Resolved implements the Expression interface.

func (NoArgFunc) String

func (fn NoArgFunc) String() string

func (NoArgFunc) Type

func (fn NoArgFunc) Type() sql.Type

Type implements the Expression interface.

type Now

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

Now is a function that returns the current time.

func (*Now) Children

func (n *Now) Children() []sql.Expression

Children implements the sql.Expression interface.

func (*Now) CollationCoercibility added in v0.15.0

func (*Now) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Now) Description added in v0.12.0

func (n *Now) Description() string

Description implements sql.FunctionExpression

func (*Now) Eval

func (n *Now) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface.

func (*Now) FunctionName

func (n *Now) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Now) IsNonDeterministic added in v0.12.0

func (n *Now) IsNonDeterministic() bool

func (*Now) IsNullable

func (n *Now) IsNullable() bool

IsNullable implements the sql.Expression interface.

func (*Now) Resolved

func (n *Now) Resolved() bool

Resolved implements the sql.Expression interface.

func (*Now) String

func (n *Now) String() string

String implements the sql.Expression interface.

func (*Now) Type

func (n *Now) Type() sql.Type

Type implements the sql.Expression interface.

func (*Now) WithChildren

func (n *Now) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type NullIf

type NullIf struct {
	expression.BinaryExpressionStub
}

NullIf function compares two expressions and returns NULL if they are equal. Otherwise, the first expression is returned.

func (*NullIf) CollationCoercibility added in v0.15.0

func (f *NullIf) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*NullIf) Description added in v0.12.0

func (f *NullIf) Description() string

Description implements sql.FunctionExpression

func (*NullIf) Eval

func (f *NullIf) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*NullIf) FunctionName

func (f *NullIf) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*NullIf) IsNullable

func (f *NullIf) IsNullable() bool

IsNullable implements the Expression interface.

func (*NullIf) String

func (f *NullIf) String() string

func (*NullIf) Type

func (f *NullIf) Type() sql.Type

Type implements the Expression interface.

func (*NullIf) WithChildren

func (f *NullIf) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Ord added in v0.18.0

type Ord struct {
	*UnaryFunc
}

Ord implements the sql function "ord" which returns the numeric value of the leftmost character

func (*Ord) CollationCoercibility added in v0.18.0

func (o *Ord) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Ord) Description added in v0.18.0

func (o *Ord) Description() string

Description implements sql.FunctionExpression

func (*Ord) Eval added in v0.18.0

func (o *Ord) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface

func (*Ord) WithChildren added in v0.18.0

func (o *Ord) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the sql.Expression interface

type Pad

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

Pad is a function that pads a string with another string.

func (*Pad) Children

func (p *Pad) Children() []sql.Expression

Children implements the Expression interface.

func (*Pad) CollationCoercibility added in v0.15.0

func (p *Pad) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Pad) Description added in v0.12.0

func (p *Pad) Description() string

Description implements sql.FunctionExpression

func (*Pad) Eval

func (p *Pad) Eval(
	ctx *sql.Context,
	row sql.Row,
) (interface{}, error)

Eval implements the Expression interface.

func (*Pad) FunctionName

func (p *Pad) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Pad) IsNullable

func (p *Pad) IsNullable() bool

IsNullable implements the Expression interface.

func (*Pad) Resolved

func (p *Pad) Resolved() bool

Resolved implements the Expression interface.

func (*Pad) String

func (p *Pad) String() string

func (*Pad) Type

func (p *Pad) Type() sql.Type

Type implements the Expression interface.

func (*Pad) WithChildren

func (p *Pad) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Pi added in v0.18.0

type Pi struct{}

func (*Pi) Children added in v0.18.0

func (p *Pi) Children() []sql.Expression

Children implements sql.Expression

func (*Pi) CollationCoercibility added in v0.18.0

func (p *Pi) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Pi) Description added in v0.18.0

func (p *Pi) Description() string

Description implements sql.FunctionExpression

func (*Pi) Eval added in v0.18.0

func (p *Pi) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*Pi) FunctionName added in v0.18.0

func (p *Pi) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Pi) IsNullable added in v0.18.0

func (p *Pi) IsNullable() bool

IsNullable implements sql.Expression

func (*Pi) Resolved added in v0.18.0

func (p *Pi) Resolved() bool

Resolved implements sql.Expression

func (*Pi) String added in v0.18.0

func (p *Pi) String() string

String implements sql.Expression

func (*Pi) Type added in v0.18.0

func (p *Pi) Type() sql.Type

Type implements sql.Expression

func (*Pi) WithChildren added in v0.18.0

func (p *Pi) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Power

type Power struct {
	expression.BinaryExpressionStub
}

Power is a function that returns value of X raised to the power of Y.

func (*Power) CollationCoercibility added in v0.15.0

func (*Power) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Power) Description added in v0.12.0

func (p *Power) Description() string

Description implements sql.FunctionExpression

func (*Power) Eval

func (p *Power) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Power) FunctionName

func (p *Power) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Power) IsNullable

func (p *Power) IsNullable() bool

IsNullable implements the Expression interface.

func (*Power) String

func (p *Power) String() string

func (*Power) Type

func (p *Power) Type() sql.Type

Type implements the Expression interface.

func (*Power) WithChildren

func (p *Power) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Quarter added in v0.18.0

type Quarter struct {
	expression.UnaryExpression
}

func (*Quarter) CollationCoercibility added in v0.18.0

func (q *Quarter) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Quarter) Description added in v0.18.0

func (q *Quarter) Description() string

Description implements sql.FunctionExpression

func (*Quarter) Eval added in v0.18.0

func (q *Quarter) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Quarter) FunctionName added in v0.18.0

func (q *Quarter) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Quarter) String added in v0.18.0

func (q *Quarter) String() string

func (*Quarter) Type added in v0.18.0

func (q *Quarter) Type() sql.Type

Type implements the Expression interface.

func (*Quarter) WithChildren added in v0.18.0

func (q *Quarter) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Radians

type Radians struct {
	*UnaryFunc
}

func (*Radians) CollationCoercibility added in v0.15.0

func (*Radians) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Radians) Description added in v0.12.0

func (r *Radians) Description() string

Description implements sql.FunctionExpression

func (*Radians) Eval

func (r *Radians) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*Radians) WithChildren

func (r *Radians) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Rand

type Rand struct {
	Child sql.Expression
}

Rand returns a random float 0 <= x < 1. If it has an argument, that argument will be used to seed the random number generator, effectively turning it into a hash on that value.

func (*Rand) Children

func (r *Rand) Children() []sql.Expression

Children implements sql.Expression

func (*Rand) CollationCoercibility added in v0.15.0

func (*Rand) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Rand) Description added in v0.12.0

func (r *Rand) Description() string

Description implements sql.FunctionExpression

func (*Rand) Eval

func (r *Rand) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression.

func (*Rand) FunctionName

func (r *Rand) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Rand) IsNonDeterministic

func (r *Rand) IsNonDeterministic() bool

IsNonDeterministic implements sql.NonDeterministicExpression

func (*Rand) IsNullable

func (r *Rand) IsNullable() bool

IsNullable implements sql.Expression

func (*Rand) Resolved

func (r *Rand) Resolved() bool

Resolved implements sql.Expression

func (*Rand) String

func (r *Rand) String() string

func (*Rand) Type

func (r *Rand) Type() sql.Type

Type implements sql.Expression.

func (*Rand) WithChildren

func (r *Rand) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression.

type RandomBytes added in v0.18.1

type RandomBytes struct {
	expression.UnaryExpression
}

RandomBytes returns a random binary string of the given length.

func (*RandomBytes) CollationCoercibility added in v0.18.1

func (*RandomBytes) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*RandomBytes) Description added in v0.18.1

func (r *RandomBytes) Description() string

Description implements sql.FunctionExpression

func (*RandomBytes) Eval added in v0.18.1

func (r *RandomBytes) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface.

func (*RandomBytes) FunctionName added in v0.18.1

func (r *RandomBytes) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*RandomBytes) IsNonDeterministic added in v0.18.1

func (r *RandomBytes) IsNonDeterministic() bool

IsNonDeterministic implements the sql.Expression interface.

func (*RandomBytes) String added in v0.18.1

func (r *RandomBytes) String() string

String implements the sql.Expression interface.

func (*RandomBytes) Type added in v0.18.1

func (r *RandomBytes) Type() sql.Type

Type implements the sql.Expression interface.

func (*RandomBytes) WithChildren added in v0.18.1

func (r *RandomBytes) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type RegexpLike added in v0.10.0

type RegexpLike struct {
	Text    sql.Expression
	Pattern sql.Expression
	Flags   sql.Expression
	// contains filtered or unexported fields
}

RegexpLike implements the REGEXP_LIKE function. https://dev.mysql.com/doc/refman/8.0/en/regexp.html#function_regexp-like

func (*RegexpLike) Children added in v0.10.0

func (r *RegexpLike) Children() []sql.Expression

Children implements the sql.Expression interface.

func (*RegexpLike) Close added in v0.16.0

func (r *RegexpLike) Close(ctx *sql.Context) error

Close implements the sql.Closer interface.

func (*RegexpLike) CollationCoercibility added in v0.15.0

func (r *RegexpLike) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*RegexpLike) Description added in v0.12.0

func (r *RegexpLike) Description() string

Description implements sql.FunctionExpression

func (*RegexpLike) Eval added in v0.10.0

func (r *RegexpLike) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface.

func (*RegexpLike) FunctionName added in v0.10.0

func (r *RegexpLike) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*RegexpLike) IsNullable added in v0.10.0

func (r *RegexpLike) IsNullable() bool

IsNullable implements the sql.Expression interface.

func (*RegexpLike) Resolved added in v0.10.0

func (r *RegexpLike) Resolved() bool

Resolved implements the sql.Expression interface.

func (*RegexpLike) String added in v0.10.0

func (r *RegexpLike) String() string

func (*RegexpLike) Type added in v0.10.0

func (r *RegexpLike) Type() sql.Type

Type implements the sql.Expression interface.

func (*RegexpLike) WithChildren added in v0.10.0

func (r *RegexpLike) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the sql.Expression interface.

type RegexpReplace added in v0.12.0

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

RegexpReplace implements the REGEXP_REPLACE function. https://dev.mysql.com/doc/refman/8.0/en/regexp.html#function_regexp-replace

func (*RegexpReplace) Children added in v0.12.0

func (r *RegexpReplace) Children() []sql.Expression

Children implements the sql.Expression interface.

func (*RegexpReplace) CollationCoercibility added in v0.15.0

func (r *RegexpReplace) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*RegexpReplace) Description added in v0.12.0

func (r *RegexpReplace) Description() string

Description implements sql.FunctionExpression

func (*RegexpReplace) Eval added in v0.12.0

func (r *RegexpReplace) Eval(ctx *sql.Context, row sql.Row) (val interface{}, err error)

Eval implements the sql.Expression interface.

func (*RegexpReplace) FunctionName added in v0.12.0

func (r *RegexpReplace) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*RegexpReplace) IsNullable added in v0.12.0

func (r *RegexpReplace) IsNullable() bool

IsNullable implements the sql.Expression interface.

func (*RegexpReplace) Resolved added in v0.12.0

func (r *RegexpReplace) Resolved() bool

Resolved implements the sql.Expression interface.

func (*RegexpReplace) String added in v0.12.0

func (r *RegexpReplace) String() string

func (*RegexpReplace) Type added in v0.12.0

func (r *RegexpReplace) Type() sql.Type

Type implements the sql.Expression interface.

func (*RegexpReplace) WithChildren added in v0.12.0

func (r *RegexpReplace) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the sql.Expression interface.

type Registry added in v0.11.0

type Registry map[string]sql.Function

Registry is used to register functions

func NewRegistry added in v0.11.0

func NewRegistry() Registry

NewRegistry creates a new Registry.

func (Registry) Function added in v0.11.0

func (r Registry) Function(ctx *sql.Context, name string) (sql.Function, error)

Function implements sql.FunctionProvider

func (Registry) Register added in v0.11.0

func (r Registry) Register(fn ...sql.Function) error

Register registers functions, returning an error if it's already registered

type ReleaseAllLocks

type ReleaseAllLocks struct {
	NoArgFunc
	// contains filtered or unexported fields
}

func (ReleaseAllLocks) CollationCoercibility added in v0.15.0

func (ReleaseAllLocks) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (ReleaseAllLocks) Description added in v0.12.0

func (r ReleaseAllLocks) Description() string

Description implements sql.FunctionExpression

func (ReleaseAllLocks) Eval

func (r ReleaseAllLocks) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (ReleaseAllLocks) WithChildren

func (r ReleaseAllLocks) WithChildren(children ...sql.Expression) (sql.Expression, error)

type ReleaseLock

type ReleaseLock struct {
	NamedLockFunction
}

func (*ReleaseLock) CollationCoercibility added in v0.15.0

func (*ReleaseLock) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*ReleaseLock) Description added in v0.12.0

func (i *ReleaseLock) Description() string

Description implements sql.FunctionExpression

func (*ReleaseLock) Eval

func (i *ReleaseLock) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*ReleaseLock) WithChildren

func (i *ReleaseLock) WithChildren(children ...sql.Expression) (sql.Expression, error)

type Repeat

type Repeat struct {
	expression.BinaryExpressionStub
}

Repeat is a function that returns the string repeated n times.

func (*Repeat) CollationCoercibility added in v0.15.0

func (r *Repeat) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Repeat) Description added in v0.12.0

func (r *Repeat) Description() string

Description implements sql.FunctionExpression

func (*Repeat) Eval

func (r *Repeat) Eval(
	ctx *sql.Context,
	row sql.Row,
) (interface{}, error)

Eval implements the Expression interface.

func (*Repeat) FunctionName

func (r *Repeat) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Repeat) String

func (r *Repeat) String() string

func (*Repeat) Type

func (r *Repeat) Type() sql.Type

Type implements the Expression interface.

func (*Repeat) WithChildren

func (r *Repeat) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Replace

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

Replace is a function that returns a string with all occurrences of fromStr replaced by the string toStr

func (*Replace) Children

func (r *Replace) Children() []sql.Expression

Children implements the Expression interface.

func (*Replace) CollationCoercibility added in v0.15.0

func (r *Replace) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Replace) Description added in v0.12.0

func (r *Replace) Description() string

Description implements sql.FunctionExpression

func (*Replace) Eval

func (r *Replace) Eval(
	ctx *sql.Context,
	row sql.Row,
) (interface{}, error)

Eval implements the Expression interface.

func (*Replace) FunctionName

func (r *Replace) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Replace) IsNullable

func (r *Replace) IsNullable() bool

IsNullable implements the Expression interface.

func (*Replace) Resolved

func (r *Replace) Resolved() bool

Resolved implements the Expression interface.

func (*Replace) String

func (r *Replace) String() string

func (*Replace) Type

func (r *Replace) Type() sql.Type

Type implements the Expression interface.

func (*Replace) WithChildren

func (r *Replace) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Reverse

type Reverse struct {
	expression.UnaryExpression
}

Reverse is a function that returns the reverse of the text provided.

func (*Reverse) CollationCoercibility added in v0.15.0

func (r *Reverse) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Reverse) Description added in v0.12.0

func (r *Reverse) Description() string

Description implements sql.FunctionExpression

func (*Reverse) Eval

func (r *Reverse) Eval(
	ctx *sql.Context,
	row sql.Row,
) (interface{}, error)

Eval implements the Expression interface.

func (*Reverse) FunctionName

func (r *Reverse) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Reverse) String

func (r *Reverse) String() string

func (*Reverse) Type

func (r *Reverse) Type() sql.Type

Type implements the Expression interface.

func (*Reverse) WithChildren

func (r *Reverse) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

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

Right is a function that returns the last N characters of a string expression.

func (Right) Children added in v0.12.0

func (r Right) Children() []sql.Expression

Children implements the Expression interface.

func (Right) CollationCoercibility added in v0.15.0

func (r Right) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (Right) DebugString added in v0.15.0

func (r Right) DebugString() string

func (Right) Description added in v0.12.0

func (r Right) Description() string

Description implements sql.FunctionExpression

func (Right) Eval added in v0.12.0

func (r Right) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (Right) FunctionName added in v0.12.0

func (r Right) FunctionName() string

FunctionName implements sql.FunctionExpression

func (Right) IsNullable added in v0.12.0

func (r Right) IsNullable() bool

IsNullable implements the Expression interface.

func (Right) Resolved added in v0.12.0

func (r Right) Resolved() bool

Resolved implements the Expression interface.

func (Right) String added in v0.12.0

func (r Right) String() string

func (Right) Type added in v0.12.0

func (Right) Type() sql.Type

Type implements the Expression interface.

func (Right) WithChildren added in v0.12.0

func (r Right) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type RightTrim added in v0.12.0

type RightTrim struct {
	expression.UnaryExpression
}

func (*RightTrim) CollationCoercibility added in v0.15.0

func (t *RightTrim) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*RightTrim) Description added in v0.12.0

func (t *RightTrim) Description() string

Description implements sql.FunctionExpression

func (*RightTrim) Eval added in v0.12.0

func (t *RightTrim) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*RightTrim) FunctionName added in v0.12.0

func (t *RightTrim) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*RightTrim) IsNullable added in v0.12.0

func (t *RightTrim) IsNullable() bool

func (*RightTrim) String added in v0.12.0

func (t *RightTrim) String() string

func (*RightTrim) Type added in v0.12.0

func (t *RightTrim) Type() sql.Type

func (*RightTrim) WithChildren added in v0.12.0

func (t *RightTrim) WithChildren(children ...sql.Expression) (sql.Expression, error)

type Round

type Round struct {
	expression.BinaryExpressionStub
}

Round returns the number (x) with (d) requested decimal places. If d is negative, the number is returned with the (abs(d)) least significant digits of it's integer part set to 0. If d is not specified or nil/null it defaults to 0.

func (*Round) Children

func (r *Round) Children() []sql.Expression

Children implements the Expression interface.

func (*Round) CollationCoercibility added in v0.15.0

func (*Round) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Round) Description added in v0.12.0

func (r *Round) Description() string

Description implements sql.FunctionExpression

func (*Round) Eval

func (r *Round) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Round) FunctionName

func (r *Round) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Round) IsNullable

func (r *Round) IsNullable() bool

IsNullable implements the Expression interface.

func (*Round) Resolved

func (r *Round) Resolved() bool

Resolved implements the Expression interface.

func (*Round) String

func (r *Round) String() string

func (*Round) Type

func (r *Round) Type() sql.Type

Type implements the Expression interface.

func (*Round) WithChildren

func (r *Round) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type RowCount added in v0.9.0

type RowCount struct{}

RowCount implements the ROW_COUNT() function

func (RowCount) Children added in v0.9.0

func (r RowCount) Children() []sql.Expression

Children implements sql.Expression

func (RowCount) CollationCoercibility added in v0.15.0

func (RowCount) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (RowCount) Description added in v0.12.0

func (r RowCount) Description() string

Description implements sql.FunctionExpression

func (RowCount) Eval added in v0.9.0

func (r RowCount) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (RowCount) FunctionName added in v0.9.0

func (r RowCount) FunctionName() string

FunctionName implements sql.FunctionExpression

func (RowCount) IsNonDeterministic added in v0.12.0

func (r RowCount) IsNonDeterministic() bool

func (RowCount) IsNullable added in v0.9.0

func (r RowCount) IsNullable() bool

IsNullable implements sql.Expression

func (RowCount) Resolved added in v0.9.0

func (r RowCount) Resolved() bool

Resolved implements sql.Expression

func (RowCount) String added in v0.9.0

func (r RowCount) String() string

String implements sql.Expression

func (RowCount) Type added in v0.9.0

func (r RowCount) Type() sql.Type

Type implements sql.Expression

func (RowCount) WithChildren added in v0.9.0

func (r RowCount) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type SHA1

type SHA1 struct {
	*UnaryFunc
}

SHA1 function returns the SHA1 hash of the input. https://dev.mysql.com/doc/refman/8.0/en/encryption-functions.html#function_sha1

func (*SHA1) CollationCoercibility added in v0.15.0

func (*SHA1) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*SHA1) Description added in v0.12.0

func (f *SHA1) Description() string

Description implements sql.FunctionExpression

func (*SHA1) Eval

func (f *SHA1) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*SHA1) WithChildren

func (f *SHA1) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type SHA2

type SHA2 struct {
	expression.BinaryExpressionStub
}

SHA2 function returns the SHA-224/256/384/512 hash of the input. https://dev.mysql.com/doc/refman/8.0/en/encryption-functions.html#function_sha2

func (*SHA2) CollationCoercibility added in v0.15.0

func (*SHA2) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*SHA2) Description added in v0.12.0

func (f *SHA2) Description() string

Description implements sql.FunctionExpression

func (*SHA2) Eval

func (f *SHA2) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*SHA2) FunctionName

func (f *SHA2) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*SHA2) String

func (f *SHA2) String() string

String implements sql.Expression

func (*SHA2) Type

func (f *SHA2) Type() sql.Type

Type implements sql.Expression

func (*SHA2) WithChildren

func (f *SHA2) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Second

type Second struct {
	expression.UnaryExpression
}

Second is a function that returns the second of a date.

func (*Second) CollationCoercibility added in v0.15.0

func (*Second) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Second) Description added in v0.12.0

func (s *Second) Description() string

Description implements sql.FunctionExpression

func (*Second) Eval

func (s *Second) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Second) FunctionName

func (s *Second) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Second) String

func (s *Second) String() string

func (*Second) Type

func (s *Second) Type() sql.Type

Type implements the Expression interface.

func (*Second) WithChildren

func (s *Second) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Sign

type Sign struct {
	*UnaryFunc
}

func (*Sign) CollationCoercibility added in v0.15.0

func (*Sign) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Sign) Description added in v0.12.0

func (s *Sign) Description() string

Description implements sql.FunctionExpression

func (*Sign) Eval

func (s *Sign) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*Sign) WithChildren

func (s *Sign) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Sin

type Sin struct {
	*UnaryFunc
}

Sin is the SIN function

func (*Sin) CollationCoercibility added in v0.15.0

func (*Sin) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Sin) Description added in v0.12.0

func (s *Sin) Description() string

Description implements sql.FunctionExpression

func (*Sin) Eval

func (s *Sin) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*Sin) WithChildren

func (s *Sin) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Sleep

type Sleep struct {
	expression.UnaryExpression
}

Sleep is a function that just waits for the specified number of seconds and returns 0. It can be useful to test timeouts or long queries.

func (*Sleep) CollationCoercibility added in v0.15.0

func (*Sleep) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Sleep) Description added in v0.12.0

func (s *Sleep) Description() string

Description implements sql.FunctionExpression

func (*Sleep) Eval

func (s *Sleep) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Sleep) FunctionName

func (s *Sleep) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Sleep) IsNullable

func (s *Sleep) IsNullable() bool

IsNullable implements the Expression interface.

func (*Sleep) String

func (s *Sleep) String() string

String implements the fmt.Stringer interface.

func (*Sleep) Type

func (s *Sleep) Type() sql.Type

Type implements the Expression interface.

func (*Sleep) WithChildren

func (s *Sleep) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Soundex

type Soundex struct {
	expression.UnaryExpression
}

Soundex is a function that returns the soundex of a string. Two strings that sound almost the same should have identical soundex strings. A standard soundex string is four characters long, but the SOUNDEX() function returns an arbitrarily long string.

func (*Soundex) CollationCoercibility added in v0.15.0

func (*Soundex) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Soundex) Description added in v0.12.0

func (s *Soundex) Description() string

Description implements sql.FunctionExpression

func (*Soundex) Eval

func (s *Soundex) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Soundex) FunctionName

func (s *Soundex) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Soundex) String

func (s *Soundex) String() string

func (*Soundex) Type

func (s *Soundex) Type() sql.Type

Type implements the Expression interface.

func (*Soundex) WithChildren

func (s *Soundex) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Space added in v0.18.0

type Space struct {
	*UnaryFunc
}

Space implements the sql function "space" which returns a string with the number of spaces specified by the argument

func (*Space) CollationCoercibility added in v0.18.0

func (s *Space) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Space) Description added in v0.18.0

func (s *Space) Description() string

Description implements sql.FunctionExpression

func (*Space) Eval added in v0.18.0

func (s *Space) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface

func (*Space) WithChildren added in v0.18.0

func (s *Space) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the sql.Expression interface

type Sqrt

type Sqrt struct {
	expression.UnaryExpression
}

Sqrt is a function that returns the square value of the number provided.

func (*Sqrt) CollationCoercibility added in v0.15.0

func (*Sqrt) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Sqrt) Description added in v0.12.0

func (s *Sqrt) Description() string

Description implements sql.FunctionExpression

func (*Sqrt) Eval

func (s *Sqrt) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Sqrt) FunctionName

func (s *Sqrt) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Sqrt) IsNullable

func (s *Sqrt) IsNullable() bool

IsNullable implements the Expression interface.

func (*Sqrt) String

func (s *Sqrt) String() string

func (*Sqrt) Type

func (s *Sqrt) Type() sql.Type

Type implements the Expression interface.

func (*Sqrt) WithChildren

func (s *Sqrt) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type StrCmp added in v0.15.0

type StrCmp struct {
	expression.BinaryExpressionStub
}

StrCmp compares two strings

func (*StrCmp) CollationCoercibility added in v0.15.0

func (s *StrCmp) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*StrCmp) Description added in v0.15.0

func (s *StrCmp) Description() string

Description implements sql.FunctionExpression

func (*StrCmp) Eval added in v0.15.0

func (s *StrCmp) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*StrCmp) FunctionName added in v0.15.0

func (s *StrCmp) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*StrCmp) String added in v0.15.0

func (s *StrCmp) String() string

func (*StrCmp) Type added in v0.15.0

func (s *StrCmp) Type() sql.Type

Type implements the Expression interface.

func (*StrCmp) WithChildren added in v0.15.0

func (s *StrCmp) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type StrToDate added in v0.14.0

type StrToDate struct {
	Date   sql.Expression
	Format sql.Expression
}

StrToDate defines the built-in function STR_TO_DATE(str, format)

func (StrToDate) Children added in v0.14.0

func (s StrToDate) Children() []sql.Expression

Children returns the children expressions of this expression.

func (StrToDate) CollationCoercibility added in v0.15.0

func (StrToDate) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (StrToDate) Description added in v0.14.0

func (s StrToDate) Description() string

Description implements sql.FunctionExpression

func (StrToDate) Eval added in v0.14.0

func (s StrToDate) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval evaluates the given row and returns a result.

func (StrToDate) FunctionName added in v0.14.0

func (s StrToDate) FunctionName() string

func (StrToDate) IsNullable added in v0.14.0

func (s StrToDate) IsNullable() bool

IsNullable returns whether the expression can be null.

func (StrToDate) Resolved added in v0.14.0

func (s StrToDate) Resolved() bool

Resolved returns whether the node is resolved.

func (StrToDate) String added in v0.14.0

func (s StrToDate) String() string

func (StrToDate) Type added in v0.14.0

func (s StrToDate) Type() sql.Type

Type returns the expression type.

func (StrToDate) WithChildren added in v0.14.0

func (s StrToDate) WithChildren(children ...sql.Expression) (sql.Expression, error)

type Substring

type Substring struct {
	Str   sql.Expression
	Start sql.Expression
	Len   sql.Expression
}

Substring is a function to return a part of a string. This function behaves as the homonym MySQL function. Since Go strings are UTF8, this function does not return a direct sub string str[start:start+length], instead returns the substring of rune s. That is, "á"[0:1] does not return a partial unicode glyph, but "á" itself.

func (*Substring) Children

func (s *Substring) Children() []sql.Expression

Children implements the Expression interface.

func (*Substring) CollationCoercibility added in v0.15.0

func (s *Substring) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Substring) Description added in v0.12.0

func (s *Substring) Description() string

Description implements sql.FunctionExpression

func (*Substring) Eval

func (s *Substring) Eval(
	ctx *sql.Context,
	row sql.Row,
) (interface{}, error)

Eval implements the Expression interface.

func (*Substring) FunctionName

func (s *Substring) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Substring) IsNullable

func (s *Substring) IsNullable() bool

IsNullable implements the Expression interface.

func (*Substring) Resolved

func (s *Substring) Resolved() bool

Resolved implements the Expression interface.

func (*Substring) String

func (s *Substring) String() string

func (*Substring) Type

func (s *Substring) Type() sql.Type

Type implements the Expression interface.

func (*Substring) WithChildren

func (*Substring) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type SubstringIndex

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

SubstringIndex returns the substring from string str before count occurrences of the delimiter delim. If count is positive, everything to the left of the final delimiter (counting from the left) is returned. If count is negative, everything to the right of the final delimiter (counting from the right) is returned. SUBSTRING_INDEX() performs a case-sensitive match when searching for delim.

func (*SubstringIndex) Children

func (s *SubstringIndex) Children() []sql.Expression

Children implements the Expression interface.

func (*SubstringIndex) CollationCoercibility added in v0.15.0

func (s *SubstringIndex) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*SubstringIndex) Description added in v0.12.0

func (s *SubstringIndex) Description() string

Description implements sql.FunctionExpression

func (*SubstringIndex) Eval

func (s *SubstringIndex) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*SubstringIndex) FunctionName

func (s *SubstringIndex) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*SubstringIndex) IsNullable

func (s *SubstringIndex) IsNullable() bool

IsNullable implements the Expression interface.

func (*SubstringIndex) Resolved

func (s *SubstringIndex) Resolved() bool

Resolved implements the Expression interface.

func (*SubstringIndex) String

func (s *SubstringIndex) String() string

func (*SubstringIndex) Type

func (*SubstringIndex) Type() sql.Type

Type implements the Expression interface.

func (*SubstringIndex) WithChildren

func (s *SubstringIndex) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Tan

type Tan struct {
	*UnaryFunc
}

func (*Tan) CollationCoercibility added in v0.15.0

func (*Tan) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Tan) Description added in v0.12.0

func (t *Tan) Description() string

Description implements sql.FunctionExpression

func (*Tan) Eval

func (t *Tan) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (*Tan) WithChildren

func (t *Tan) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Time added in v0.15.0

type Time struct {
	expression.UnaryExpression
}

Time is a function takes the Time part out from a datetime expression.

func (*Time) CollationCoercibility added in v0.15.0

func (*Time) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Time) Description added in v0.18.0

func (t *Time) Description() string

func (*Time) Eval added in v0.15.0

func (t *Time) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Time) FunctionName added in v0.18.0

func (t *Time) FunctionName() string

func (*Time) String added in v0.15.0

func (t *Time) String() string

func (*Time) Type added in v0.15.0

func (t *Time) Type() sql.Type

Type implements the Expression interface.

func (*Time) WithChildren added in v0.15.0

func (t *Time) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type TimeDiff

type TimeDiff struct {
	expression.BinaryExpressionStub
}

TimeDiff subtracts the second argument from the first expressed as a time value.

func (*TimeDiff) CollationCoercibility added in v0.15.0

func (*TimeDiff) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*TimeDiff) Description added in v0.12.0

func (td *TimeDiff) Description() string

Description implements sql.FunctionExpression

func (*TimeDiff) Eval

func (td *TimeDiff) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*TimeDiff) FunctionName

func (td *TimeDiff) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*TimeDiff) String

func (td *TimeDiff) String() string

func (*TimeDiff) Type

func (td *TimeDiff) Type() sql.Type

Type implements the Expression interface.

func (*TimeDiff) WithChildren

func (td *TimeDiff) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type TimeFormat added in v0.12.0

type TimeFormat struct {
	expression.BinaryExpressionStub
}

TimeFormat function returns a string representation of the date specified in the format specified

func (*TimeFormat) CollationCoercibility added in v0.15.0

func (*TimeFormat) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*TimeFormat) Description added in v0.12.0

func (f *TimeFormat) Description() string

Description implements sql.FunctionExpression

func (*TimeFormat) Eval added in v0.12.0

func (f *TimeFormat) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*TimeFormat) FunctionName added in v0.12.0

func (f *TimeFormat) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*TimeFormat) IsNullable added in v0.12.0

func (f *TimeFormat) IsNullable() bool

IsNullable implements the Expression interface.

func (*TimeFormat) String added in v0.12.0

func (f *TimeFormat) String() string

func (*TimeFormat) Type added in v0.12.0

func (f *TimeFormat) Type() sql.Type

Type implements the Expression interface.

func (*TimeFormat) WithChildren added in v0.12.0

func (f *TimeFormat) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type TimeToSec

type TimeToSec struct {
	*UnaryDatetimeFunc
}

TimeToSec implements the time_to_sec function

func (*TimeToSec) CollationCoercibility added in v0.15.0

func (*TimeToSec) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*TimeToSec) Description added in v0.12.0

func (m *TimeToSec) Description() string

Description implements sql.FunctionExpression

func (*TimeToSec) Eval

func (m *TimeToSec) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*TimeToSec) WithChildren

func (m *TimeToSec) WithChildren(children ...sql.Expression) (sql.Expression, error)

type TimestampConversion

type TimestampConversion struct {
	Date sql.Expression
}

TimestampConversion is a shorthand function for CONVERT(expr, TIMESTAMP)

func (*TimestampConversion) Children

func (t *TimestampConversion) Children() []sql.Expression

func (*TimestampConversion) CollationCoercibility added in v0.15.0

func (*TimestampConversion) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*TimestampConversion) Description added in v0.12.0

func (t *TimestampConversion) Description() string

Description implements sql.FunctionExpression

func (*TimestampConversion) Eval

func (t *TimestampConversion) Eval(ctx *sql.Context, r sql.Row) (interface{}, error)

func (*TimestampConversion) FunctionName

func (t *TimestampConversion) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*TimestampConversion) IsNullable

func (t *TimestampConversion) IsNullable() bool

func (*TimestampConversion) Resolved

func (t *TimestampConversion) Resolved() bool

func (*TimestampConversion) String

func (t *TimestampConversion) String() string

func (*TimestampConversion) Type

func (t *TimestampConversion) Type() sql.Type

func (*TimestampConversion) WithChildren

func (t *TimestampConversion) WithChildren(children ...sql.Expression) (sql.Expression, error)

type TimestampDiff added in v0.12.0

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

TimestampDiff returns expr1 − expr2 expressed as a value in unit specified.

func (*TimestampDiff) Children added in v0.12.0

func (t *TimestampDiff) Children() []sql.Expression

Children implements the sql.Expression interface.

func (*TimestampDiff) CollationCoercibility added in v0.15.0

func (*TimestampDiff) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*TimestampDiff) Description added in v0.12.0

func (t *TimestampDiff) Description() string

Description implements sql.FunctionExpression

func (*TimestampDiff) Eval added in v0.12.0

func (t *TimestampDiff) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface.

func (*TimestampDiff) FunctionName added in v0.12.0

func (t *TimestampDiff) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*TimestampDiff) IsNullable added in v0.12.0

func (t *TimestampDiff) IsNullable() bool

IsNullable implements the sql.Expression interface.

func (*TimestampDiff) Resolved added in v0.12.0

func (t *TimestampDiff) Resolved() bool

Resolved implements the sql.Expression interface.

func (*TimestampDiff) String added in v0.12.0

func (t *TimestampDiff) String() string

func (*TimestampDiff) Type added in v0.12.0

func (t *TimestampDiff) Type() sql.Type

Type implements the sql.Expression interface.

func (*TimestampDiff) WithChildren added in v0.12.0

func (t *TimestampDiff) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type ToBase64

type ToBase64 struct {
	expression.UnaryExpression
}

ToBase64 is a function to encode a string to the Base64 format using the same dialect that MySQL's TO_BASE64 uses

func (*ToBase64) CollationCoercibility added in v0.15.0

func (*ToBase64) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*ToBase64) Description added in v0.12.0

func (t *ToBase64) Description() string

Description implements sql.FunctionExpression

func (*ToBase64) Eval

func (t *ToBase64) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*ToBase64) FunctionName

func (t *ToBase64) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*ToBase64) IsNullable

func (t *ToBase64) IsNullable() bool

IsNullable implements the Expression interface.

func (*ToBase64) String

func (t *ToBase64) String() string

String implements the fmt.Stringer interface.

func (*ToBase64) Type

func (t *ToBase64) Type() sql.Type

Type implements the Expression interface.

func (*ToBase64) WithChildren

func (t *ToBase64) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Trim

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

func (*Trim) Children added in v0.12.0

func (t *Trim) Children() []sql.Expression

Children implements the Expression interface.

func (Trim) CollationCoercibility added in v0.15.0

func (t Trim) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Trim) Description added in v0.12.0

func (t *Trim) Description() string

Description implements sql.FunctionExpression

func (*Trim) Eval

func (t *Trim) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Trim) FunctionName

func (t *Trim) FunctionName() string

FunctionName implements sql.FunctionExpression

func (Trim) IsNullable

func (t Trim) IsNullable() bool

IsNullable implements the Expression interface.

func (Trim) Resolved added in v0.12.0

func (t Trim) Resolved() bool

func (Trim) String

func (t Trim) String() string

func (Trim) Type

func (t Trim) Type() sql.Type

func (Trim) WithChildren

func (t Trim) WithChildren(children ...sql.Expression) (sql.Expression, error)

type UTCTimestamp

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

UTCTimestamp is a function that returns the current time.

func (*UTCTimestamp) Children

func (ut *UTCTimestamp) Children() []sql.Expression

Children implements the sql.Expression interface.

func (*UTCTimestamp) CollationCoercibility added in v0.15.0

func (*UTCTimestamp) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*UTCTimestamp) Description added in v0.12.0

func (ut *UTCTimestamp) Description() string

Description implements sql.FunctionExpression

func (*UTCTimestamp) Eval

func (ut *UTCTimestamp) Eval(ctx *sql.Context, _ sql.Row) (interface{}, error)

Eval implements the sql.Expression interface.

func (*UTCTimestamp) FunctionName

func (ut *UTCTimestamp) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*UTCTimestamp) IsNullable

func (ut *UTCTimestamp) IsNullable() bool

IsNullable implements the sql.Expression interface.

func (*UTCTimestamp) Resolved

func (ut *UTCTimestamp) Resolved() bool

Resolved implements the sql.Expression interface.

func (*UTCTimestamp) String

func (ut *UTCTimestamp) String() string

func (*UTCTimestamp) Type

func (ut *UTCTimestamp) Type() sql.Type

Type implements the sql.Expression interface.

func (*UTCTimestamp) WithChildren

func (ut *UTCTimestamp) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type UUIDFunc added in v0.9.0

type UUIDFunc struct{}

func (UUIDFunc) Children added in v0.9.0

func (u UUIDFunc) Children() []sql.Expression

Children returns the children expressions of this expression.

func (UUIDFunc) CollationCoercibility added in v0.15.0

func (UUIDFunc) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (UUIDFunc) Description added in v0.12.0

func (u UUIDFunc) Description() string

Description implements sql.FunctionExpression

func (UUIDFunc) Eval added in v0.9.0

func (u UUIDFunc) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (UUIDFunc) FunctionName added in v0.9.0

func (u UUIDFunc) FunctionName() string

func (UUIDFunc) IsNonDeterministic added in v0.12.0

func (u UUIDFunc) IsNonDeterministic() bool

func (UUIDFunc) IsNullable added in v0.9.0

func (u UUIDFunc) IsNullable() bool

IsNullable returns whether the expression can be null.

func (UUIDFunc) Resolved added in v0.9.0

func (u UUIDFunc) Resolved() bool

func (UUIDFunc) String added in v0.9.0

func (u UUIDFunc) String() string

func (UUIDFunc) Type added in v0.9.0

func (u UUIDFunc) Type() sql.Type

func (UUIDFunc) WithChildren added in v0.9.0

func (u UUIDFunc) WithChildren(children ...sql.Expression) (sql.Expression, error)

type UUIDToBin added in v0.9.0

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

func (UUIDToBin) Children added in v0.9.0

func (ub UUIDToBin) Children() []sql.Expression

Children returns the children expressions of this expression.

func (UUIDToBin) CollationCoercibility added in v0.15.0

func (UUIDToBin) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (UUIDToBin) Description added in v0.12.0

func (ub UUIDToBin) Description() string

Description implements sql.FunctionExpression

func (*UUIDToBin) Eval added in v0.9.0

func (ub *UUIDToBin) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (UUIDToBin) FunctionName added in v0.9.0

func (ub UUIDToBin) FunctionName() string

func (UUIDToBin) IsNullable added in v0.9.0

func (ub UUIDToBin) IsNullable() bool

IsNullable returns whether the expression can be null.

func (UUIDToBin) Resolved added in v0.9.0

func (ub UUIDToBin) Resolved() bool

func (UUIDToBin) String added in v0.9.0

func (ub UUIDToBin) String() string

func (UUIDToBin) Type added in v0.9.0

func (ub UUIDToBin) Type() sql.Type

func (UUIDToBin) WithChildren added in v0.9.0

func (ub UUIDToBin) WithChildren(children ...sql.Expression) (sql.Expression, error)

type UnaryDatetimeFunc

type UnaryDatetimeFunc struct {
	expression.UnaryExpression
	// Name is the name of the function
	Name string
	// SQLType is the return type of the function
	SQLType sql.Type
}

UnaryDatetimeFunc is a sql.Function which takes a single datetime argument

func NewUnaryDatetimeFunc

func NewUnaryDatetimeFunc(arg sql.Expression, name string, sqlType sql.Type) *UnaryDatetimeFunc

func (*UnaryDatetimeFunc) EvalChild

func (dtf *UnaryDatetimeFunc) EvalChild(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*UnaryDatetimeFunc) FunctionName

func (dtf *UnaryDatetimeFunc) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*UnaryDatetimeFunc) String

func (dtf *UnaryDatetimeFunc) String() string

String implements the fmt.Stringer interface.

func (*UnaryDatetimeFunc) Type

func (dtf *UnaryDatetimeFunc) Type() sql.Type

Type implements the Expression interface.

type UnaryFunc

type UnaryFunc struct {
	expression.UnaryExpression
	// Name is the name of the function
	Name string
	// The type returned by the function
	RetType sql.Type
}

func NewUnaryFunc

func NewUnaryFunc(arg sql.Expression, name string, returnType sql.Type) *UnaryFunc

func (*UnaryFunc) EvalChild

func (uf *UnaryFunc) EvalChild(ctx *sql.Context, row sql.Row) (interface{}, error)

EvalChild is a convenience function for safely evaluating a child expression

func (*UnaryFunc) FunctionName

func (uf *UnaryFunc) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*UnaryFunc) String

func (uf *UnaryFunc) String() string

String implements the fmt.Stringer interface.

func (*UnaryFunc) Type

func (uf *UnaryFunc) Type() sql.Type

Type implements the Expression interface.

type Unhex

type Unhex struct {
	*UnaryFunc
}

Unhex implements the sql function "unhex" which returns the integer representation of a hexadecimal string

func (*Unhex) CollationCoercibility added in v0.15.0

func (*Unhex) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Unhex) Description added in v0.12.0

func (h *Unhex) Description() string

Description implements sql.FunctionExpression

func (*Unhex) Eval

func (h *Unhex) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the sql.Expression interface

func (*Unhex) WithChildren

func (h *Unhex) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the sql.Expression interface

type UnixTimestamp

type UnixTimestamp struct {
	Date sql.Expression
}

UnixTimestamp converts the argument to the number of seconds since 1970-01-01 00:00:00 UTC. With no argument, returns number of seconds since unix epoch for the current time.

func (*UnixTimestamp) Children

func (ut *UnixTimestamp) Children() []sql.Expression

func (*UnixTimestamp) CollationCoercibility added in v0.15.0

func (*UnixTimestamp) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*UnixTimestamp) Description added in v0.12.0

func (ut *UnixTimestamp) Description() string

Description implements sql.FunctionExpression

func (*UnixTimestamp) Eval

func (ut *UnixTimestamp) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*UnixTimestamp) FunctionName

func (ut *UnixTimestamp) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*UnixTimestamp) IsNullable

func (ut *UnixTimestamp) IsNullable() bool

func (*UnixTimestamp) Resolved

func (ut *UnixTimestamp) Resolved() bool

func (*UnixTimestamp) String

func (ut *UnixTimestamp) String() string

func (*UnixTimestamp) Type

func (ut *UnixTimestamp) Type() sql.Type

func (*UnixTimestamp) WithChildren

func (ut *UnixTimestamp) WithChildren(children ...sql.Expression) (sql.Expression, error)

type Upper

type Upper struct {
	expression.UnaryExpression
}

Upper is a function that returns the UPPERCASE of the text provided.

func (*Upper) CollationCoercibility added in v0.15.0

func (u *Upper) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Upper) Description added in v0.12.0

func (u *Upper) Description() string

Description implements sql.FunctionExpression

func (*Upper) Eval

func (u *Upper) Eval(
	ctx *sql.Context,
	row sql.Row,
) (interface{}, error)

Eval implements the Expression interface.

func (*Upper) FunctionName

func (u *Upper) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Upper) String

func (u *Upper) String() string

func (*Upper) Type

func (u *Upper) Type() sql.Type

Type implements the Expression interface.

func (*Upper) WithChildren

func (u *Upper) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type User

type User struct {
	NoArgFunc
}

func (User) CollationCoercibility added in v0.15.0

func (User) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (User) Description added in v0.12.0

func (c User) Description() string

Description implements sql.FunctionExpression

func (User) Eval

func (c User) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.Expression

func (User) IsNonDeterministic added in v0.12.0

func (c User) IsNonDeterministic() bool

func (User) WithChildren

func (c User) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.Expression

type Values

type Values struct {
	expression.UnaryExpression
	Value interface{}
}

Values is used in an ON DUPLICATE KEY UPDATE statement to return the value stated in the to-be-inserted column. For example, given the following statement: INSERT INTO table (pk, v1, v2) VALUES (1, 3, 5), (2, 4, 6) ON DUPLICATE KEY UPDATE v2 = values(v1) * 10; the values inserted into v2 would be 30 and 40.

func (*Values) CollationCoercibility added in v0.15.0

func (v *Values) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Values) Description added in v0.12.0

func (v *Values) Description() string

Description implements sql.FunctionExpression.

func (*Values) Eval

func (v *Values) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements sql.FunctionExpression.

func (*Values) FunctionName

func (v *Values) FunctionName() string

FunctionName implements sql.FunctionExpression.

func (*Values) String

func (v *Values) String() string

String implements sql.FunctionExpression.

func (*Values) Type

func (v *Values) Type() sql.Type

Type implements sql.FunctionExpression.

func (*Values) WithChildren

func (v *Values) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements sql.FunctionExpression.

type Version

type Version string

Version is a function that returns server version.

func (Version) Children

func (f Version) Children() []sql.Expression

Children implements the Expression interface.

func (Version) CollationCoercibility added in v0.15.0

func (Version) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (Version) Description added in v0.12.0

func (f Version) Description() string

Description implements sql.FunctionExpression

func (Version) Eval

func (f Version) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (Version) FunctionName

func (f Version) FunctionName() string

FunctionName implements sql.FunctionExpression

func (Version) IsNonDeterministic added in v0.12.0

func (f Version) IsNonDeterministic() bool

func (Version) IsNullable

func (f Version) IsNullable() bool

IsNullable implements the Expression interface.

func (Version) Resolved

func (f Version) Resolved() bool

Resolved implements the Expression interface.

func (Version) String

func (f Version) String() string

func (Version) Type

func (f Version) Type() sql.Type

Type implements the Expression interface.

func (Version) WithChildren

func (f Version) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Week

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

Week is a function that returns year and week for a date. The year in the result may be different from the year in the date argument for the first and the last week of the year. Details: https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_yearweek

func (*Week) Children

func (d *Week) Children() []sql.Expression

Children implements the Expression interface.

func (*Week) CollationCoercibility added in v0.15.0

func (*Week) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Week) Description added in v0.12.0

func (d *Week) Description() string

Description implements sql.FunctionExpression

func (*Week) Eval

func (d *Week) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Week) FunctionName

func (d *Week) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Week) IsNullable

func (d *Week) IsNullable() bool

IsNullable implements the Expression interface.

func (*Week) Resolved

func (d *Week) Resolved() bool

Resolved implements the Expression interface.

func (*Week) String

func (d *Week) String() string

func (*Week) Type

func (d *Week) Type() sql.Type

Type implements the Expression interface.

func (*Week) WithChildren

func (*Week) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type WeekOfYear

type WeekOfYear struct {
	*UnaryDatetimeFunc
}

WeekOfYear implements the weekofyear function

func (*WeekOfYear) CollationCoercibility added in v0.15.0

func (*WeekOfYear) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*WeekOfYear) Description added in v0.12.0

func (m *WeekOfYear) Description() string

Description implements sql.FunctionExpression

func (*WeekOfYear) Eval

func (m *WeekOfYear) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

func (*WeekOfYear) WithChildren

func (m *WeekOfYear) WithChildren(children ...sql.Expression) (sql.Expression, error)

type Weekday

type Weekday struct {
	expression.UnaryExpression
}

Weekday is a function that returns the weekday of a date where 0 = Monday, ..., 6 = Sunday.

func (*Weekday) CollationCoercibility added in v0.15.0

func (*Weekday) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Weekday) Description added in v0.12.0

func (d *Weekday) Description() string

Description implements sql.FunctionExpression

func (*Weekday) Eval

func (d *Weekday) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Weekday) FunctionName

func (d *Weekday) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Weekday) String

func (d *Weekday) String() string

func (*Weekday) Type

func (d *Weekday) Type() sql.Type

Type implements the Expression interface.

func (*Weekday) WithChildren

func (d *Weekday) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type Year

type Year struct {
	expression.UnaryExpression
}

Year is a function that returns the year of a date.

func (*Year) CollationCoercibility added in v0.15.0

func (*Year) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*Year) Description added in v0.12.0

func (y *Year) Description() string

Description implements sql.FunctionExpression

func (*Year) Eval

func (y *Year) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*Year) FunctionName

func (y *Year) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*Year) String

func (y *Year) String() string

func (*Year) Type

func (y *Year) Type() sql.Type

Type implements the Expression interface.

func (*Year) WithChildren

func (y *Year) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

type YearWeek

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

YearWeek is a function that returns year and week for a date. The year in the result may be different from the year in the date argument for the first and the last week of the year. Details: https://dev.mysql.com/doc/refman/5.5/en/date-and-time-functions.html#function_yearweek

func (*YearWeek) Children

func (d *YearWeek) Children() []sql.Expression

Children implements the Expression interface.

func (*YearWeek) CollationCoercibility added in v0.15.0

func (*YearWeek) CollationCoercibility(ctx *sql.Context) (collation sql.CollationID, coercibility byte)

CollationCoercibility implements the interface sql.CollationCoercible.

func (*YearWeek) Description added in v0.12.0

func (d *YearWeek) Description() string

Description implements sql.FunctionExpression

func (*YearWeek) Eval

func (d *YearWeek) Eval(ctx *sql.Context, row sql.Row) (interface{}, error)

Eval implements the Expression interface.

func (*YearWeek) FunctionName

func (d *YearWeek) FunctionName() string

FunctionName implements sql.FunctionExpression

func (*YearWeek) IsNullable

func (d *YearWeek) IsNullable() bool

IsNullable implements the Expression interface.

func (*YearWeek) Resolved

func (d *YearWeek) Resolved() bool

Resolved implements the Expression interface.

func (*YearWeek) String

func (d *YearWeek) String() string

func (*YearWeek) Type

func (d *YearWeek) Type() sql.Type

Type implements the Expression interface.

func (*YearWeek) WithChildren

func (*YearWeek) WithChildren(children ...sql.Expression) (sql.Expression, error)

WithChildren implements the Expression interface.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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