2021-08-29 15:41:41 +01:00
|
|
|
package sqlitedialect
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
2021-10-24 12:14:37 +01:00
|
|
|
"encoding/hex"
|
2022-04-24 11:26:22 +01:00
|
|
|
"fmt"
|
2021-08-29 15:41:41 +01:00
|
|
|
|
2022-04-24 11:26:22 +01:00
|
|
|
"github.com/uptrace/bun"
|
2021-08-29 15:41:41 +01:00
|
|
|
"github.com/uptrace/bun/dialect"
|
|
|
|
"github.com/uptrace/bun/dialect/feature"
|
|
|
|
"github.com/uptrace/bun/dialect/sqltype"
|
|
|
|
"github.com/uptrace/bun/schema"
|
|
|
|
)
|
|
|
|
|
2022-04-24 11:26:22 +01:00
|
|
|
func init() {
|
|
|
|
if Version() != bun.Version() {
|
|
|
|
panic(fmt.Errorf("sqlitedialect and Bun must have the same version: v%s != v%s",
|
|
|
|
Version(), bun.Version()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
type Dialect struct {
|
2021-10-24 12:14:37 +01:00
|
|
|
schema.BaseDialect
|
|
|
|
|
2021-08-29 15:41:41 +01:00
|
|
|
tables *schema.Tables
|
|
|
|
features feature.Feature
|
|
|
|
}
|
|
|
|
|
|
|
|
func New() *Dialect {
|
|
|
|
d := new(Dialect)
|
|
|
|
d.tables = schema.NewTables(d)
|
2021-09-10 13:42:14 +01:00
|
|
|
d.features = feature.CTE |
|
2022-04-24 11:26:22 +01:00
|
|
|
feature.WithValues |
|
2021-09-10 13:42:14 +01:00
|
|
|
feature.Returning |
|
2022-04-24 11:26:22 +01:00
|
|
|
feature.InsertReturning |
|
2021-09-10 13:42:14 +01:00
|
|
|
feature.InsertTableAlias |
|
2022-04-24 11:26:22 +01:00
|
|
|
feature.UpdateTableAlias |
|
2021-11-27 14:26:58 +00:00
|
|
|
feature.DeleteTableAlias |
|
2022-04-24 11:26:22 +01:00
|
|
|
feature.InsertOnConflict |
|
|
|
|
feature.TableNotExists |
|
2022-09-28 18:30:40 +01:00
|
|
|
feature.SelectExists |
|
2024-01-15 13:08:07 +00:00
|
|
|
feature.AutoIncrement |
|
2022-09-28 18:30:40 +01:00
|
|
|
feature.CompositeIn
|
2021-08-29 15:41:41 +01:00
|
|
|
return d
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Dialect) Init(*sql.DB) {}
|
|
|
|
|
|
|
|
func (d *Dialect) Name() dialect.Name {
|
|
|
|
return dialect.SQLite
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Dialect) Features() feature.Feature {
|
|
|
|
return d.features
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Dialect) Tables() *schema.Tables {
|
|
|
|
return d.tables
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Dialect) OnTable(table *schema.Table) {
|
|
|
|
for _, field := range table.FieldMap {
|
|
|
|
d.onField(field)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Dialect) onField(field *schema.Field) {
|
2021-10-24 12:14:37 +01:00
|
|
|
field.DiscoveredSQLType = fieldSQLType(field)
|
2021-08-29 15:41:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Dialect) IdentQuote() byte {
|
|
|
|
return '"'
|
|
|
|
}
|
|
|
|
|
2021-10-24 12:14:37 +01:00
|
|
|
func (d *Dialect) AppendBytes(b []byte, bs []byte) []byte {
|
|
|
|
if bs == nil {
|
|
|
|
return dialect.AppendNull(b)
|
2021-08-29 15:41:41 +01:00
|
|
|
}
|
|
|
|
|
2021-10-24 12:14:37 +01:00
|
|
|
b = append(b, `X'`...)
|
2021-08-29 15:41:41 +01:00
|
|
|
|
2021-10-24 12:14:37 +01:00
|
|
|
s := len(b)
|
|
|
|
b = append(b, make([]byte, hex.EncodedLen(len(bs)))...)
|
|
|
|
hex.Encode(b[s:], bs)
|
2021-08-29 15:41:41 +01:00
|
|
|
|
2021-10-24 12:14:37 +01:00
|
|
|
b = append(b, '\'')
|
2021-08-29 15:41:41 +01:00
|
|
|
|
2021-10-24 12:14:37 +01:00
|
|
|
return b
|
|
|
|
}
|
2021-08-29 15:41:41 +01:00
|
|
|
|
2023-01-22 11:26:47 +00:00
|
|
|
func (d *Dialect) DefaultVarcharLen() int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2024-01-15 13:08:07 +00:00
|
|
|
// AppendSequence adds AUTOINCREMENT keyword to the column definition. As per [documentation],
|
|
|
|
// AUTOINCREMENT is only valid for INTEGER PRIMARY KEY, and this method will be a noop for other columns.
|
|
|
|
//
|
|
|
|
// Because this is a valid construct:
|
|
|
|
// CREATE TABLE ("id" INTEGER PRIMARY KEY AUTOINCREMENT);
|
|
|
|
// and this is not:
|
|
|
|
// CREATE TABLE ("id" INTEGER AUTOINCREMENT, PRIMARY KEY ("id"));
|
|
|
|
// AppendSequence adds a primary key constraint as a *side-effect*. Callers should expect it to avoid building invalid SQL.
|
|
|
|
// SQLite also [does not support] AUTOINCREMENT column in composite primary keys.
|
|
|
|
//
|
|
|
|
// [documentation]: https://www.sqlite.org/autoinc.html
|
|
|
|
// [does not support]: https://stackoverflow.com/a/6793274/14726116
|
|
|
|
func (d *Dialect) AppendSequence(b []byte, table *schema.Table, field *schema.Field) []byte {
|
|
|
|
if field.IsPK && len(table.PKs) == 1 && field.CreateTableSQLType == sqltype.Integer {
|
|
|
|
b = append(b, " PRIMARY KEY AUTOINCREMENT"...)
|
|
|
|
}
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2021-10-24 12:14:37 +01:00
|
|
|
func fieldSQLType(field *schema.Field) string {
|
|
|
|
switch field.DiscoveredSQLType {
|
|
|
|
case sqltype.SmallInt, sqltype.BigInt:
|
|
|
|
// INTEGER PRIMARY KEY is an alias for the ROWID.
|
|
|
|
// It is safe to convert all ints to INTEGER, because SQLite types don't have size.
|
|
|
|
return sqltype.Integer
|
|
|
|
default:
|
|
|
|
return field.DiscoveredSQLType
|
2021-08-29 15:41:41 +01:00
|
|
|
}
|
|
|
|
}
|