Documentation ¶
Index ¶
- Variables
- func New(config Config) gorm.Dialector
- func Open(dsn string) gorm.Dialector
- type Config
- type Dialector
- func (dialector Dialector) BindVarTo(writer clause.Writer, stmt *gorm.Statement, v interface{})
- func (dialector Dialector) ClauseBuilders() map[string]clause.ClauseBuilder
- func (dialector *Dialector) Create(db *gorm.DB)
- func (dialector Dialector) DataTypeOf(field *schema.Field) string
- func (dialector Dialector) DefaultValueOf(field *schema.Field) clause.Expression
- func (dialector Dialector) Explain(sql string, vars ...interface{}) string
- func (dialector *Dialector) Initialize(db *gorm.DB) (err error)
- func (dialector Dialector) Migrator(db *gorm.DB) gorm.Migrator
- func (dialector Dialector) Name() string
- func (dialector Dialector) QuoteTo(writer clause.Writer, str string)
- func (dialectopr Dialector) RollbackTo(tx *gorm.DB, name string) error
- func (dialectopr Dialector) SavePoint(tx *gorm.DB, name string) error
- func (dialector *Dialector) Update(db *gorm.DB)
- type Migrator
- func (m Migrator) AddColumn(value interface{}, field string) error
- func (m Migrator) AlterColumn(value interface{}, field string) error
- func (m Migrator) BuildIndexOptions(opts []schema.IndexOption, stmt *gorm.Statement) (results []interface{})
- func (m Migrator) ColumnTypes(value interface{}) ([]gorm.ColumnType, error)
- func (m Migrator) CreateIndex(value interface{}, name string) error
- func (m Migrator) CreateTable(models ...interface{}) error
- func (m Migrator) CurrentDatabase() (name string)
- func (m Migrator) DropColumn(value interface{}, name string) error
- func (m Migrator) DropIndex(value interface{}, name string) error
- func (m Migrator) FullDataTypeOf(field *schema.Field) (expr clause.Expr)
- func (m Migrator) GetTables() (tableList []string, err error)
- func (m Migrator) HasColumn(value interface{}, field string) bool
- func (m Migrator) HasIndex(value interface{}, name string) bool
- func (m Migrator) HasTable(value interface{}) bool
- func (m Migrator) RenameColumn(value interface{}, oldName, newName string) error
- func (m Migrator) RenameIndex(value interface{}, oldName, newName string) error
- type UpdateLocalTable
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrRenameColumnUnsupported = errors.New("renaming column is not supported in your clickhouse version < 20.4") ErrRenameIndexUnsupported = errors.New("renaming index is not supported") ErrCreateIndexFailed = errors.New("failed to create index with name") )
Errors enumeration
Functions ¶
Types ¶
type Config ¶
type Config struct { DriverName string DSN string Conn gorm.ConnPool DisableDatetimePrecision bool DontSupportRenameColumn bool DontSupportColumnPrecision bool DontSupportEmptyDefaultValue bool SkipInitializeWithVersion bool DefaultGranularity int // 1 granule = 8192 rows DefaultCompression string // default compression algorithm. LZ4 is lossless DefaultIndexType string // index stores extremes of the expression DefaultTableEngineOpts string PoolMaxIdleCount int // zero means defaultMaxIdleConns; negative means 0 PoolMaxOpenCount int // <= 0 means unlimited PoolMaxLifetime time.Duration // maximum amount of time a connection may be reused PoolMaxIdleTime time.Duration // maximum amount of time a connection may be idle before being closed }
type Dialector ¶
func (Dialector) ClauseBuilders ¶
func (dialector Dialector) ClauseBuilders() map[string]clause.ClauseBuilder
func (Dialector) DefaultValueOf ¶
func (dialector Dialector) DefaultValueOf(field *schema.Field) clause.Expression
func (Dialector) RollbackTo ¶
type Migrator ¶
func (Migrator) AlterColumn ¶
func (Migrator) BuildIndexOptions ¶
func (m Migrator) BuildIndexOptions(opts []schema.IndexOption, stmt *gorm.Statement) (results []interface{})
func (Migrator) ColumnTypes ¶ added in v0.2.14
func (m Migrator) ColumnTypes(value interface{}) ([]gorm.ColumnType, error)
ColumnTypes return columnTypes []gorm.ColumnType and execErr error
func (Migrator) CreateIndex ¶
func (Migrator) CreateTable ¶
func (Migrator) CurrentDatabase ¶
func (Migrator) DropColumn ¶
func (Migrator) FullDataTypeOf ¶
func (Migrator) RenameColumn ¶
NOTE: Only supported after ClickHouse 20.4 and above. See: https://github.com/ClickHouse/ClickHouse/issues/146
func (Migrator) RenameIndex ¶
type UpdateLocalTable ¶ added in v0.2.14
func (UpdateLocalTable) Build ¶ added in v0.2.14
func (t UpdateLocalTable) Build(clause.Builder)
Build implements clause.Expression interface
func (UpdateLocalTable) ModifySQL ¶ added in v0.2.14
func (t UpdateLocalTable) ModifySQL(sql string) string
func (UpdateLocalTable) ModifyStatement ¶ added in v0.2.14
func (t UpdateLocalTable) ModifyStatement(stmt *gorm.Statement)
ModifyStatement modify operation mode
Click to show internal directories.
Click to hide internal directories.