package dialect

Import Path
	github.com/uptrace/bun/dialect (on go.dev)

Dependency Relation
	imports 7 packages, and imported by 5 packages

Involved Source Files append.go dialect.go
Package-Level Type Names (only one, which is exported)
/* sort exporteds by: | */
( T) String() string T : fmt.Stringer func github.com/uptrace/bun/dialect/mysqldialect.(*Dialect).Name() Name func github.com/uptrace/bun/dialect/pgdialect.(*Dialect).Name() Name func github.com/uptrace/bun/dialect/sqlitedialect.(*Dialect).Name() Name func github.com/uptrace/bun/schema.Dialect.Name() Name const Invalid const MySQL const PG const SQLite
Package-Level Functions (total 12, in which 10 are exported)
func AppendBool(b []byte, v bool) []byte
func AppendBytes(b []byte, bytes []byte) []byte
func AppendError(b []byte, err error) []byte
func AppendFloat32(b []byte, v float32) []byte
func AppendFloat64(b []byte, v float64) []byte
func AppendIdent(b []byte, field string, quote byte) []byte
func AppendJSON(b, jsonb []byte) []byte
func AppendNull(b []byte) []byte
func AppendString(b []byte, s string) []byte
func AppendTime(b []byte, tm time.Time) []byte
Package-Level Constants (total 4, all are exported)
const Invalid Name = 0
const MySQL Name = 3
const PG Name = 1
const SQLite Name = 2