gorm/postgres.go

64 lines
1.5 KiB
Go
Raw Normal View History

package gorm
2013-11-14 14:59:11 +04:00
import (
"fmt"
2014-03-16 05:28:43 +04:00
"reflect"
2013-11-14 14:59:11 +04:00
)
type postgres struct {
}
2013-11-16 16:47:25 +04:00
func (s *postgres) BinVar(i int) string {
return fmt.Sprintf("$%v", i)
2013-11-14 14:59:11 +04:00
}
func (s *postgres) SupportLastInsertId() bool {
return false
}
2014-03-16 05:28:43 +04:00
func (d *postgres) SqlTag(value reflect.Value, size int) string {
switch value.Kind() {
case reflect.Bool:
2013-11-14 14:59:11 +04:00
return "boolean"
2014-03-16 05:28:43 +04:00
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uintptr:
2013-11-14 14:59:11 +04:00
return "integer"
2014-03-16 05:28:43 +04:00
case reflect.Int64, reflect.Uint64:
2013-11-14 14:59:11 +04:00
return "bigint"
2014-03-16 05:28:43 +04:00
case reflect.Float32, reflect.Float64:
2013-12-03 04:23:26 +04:00
return "numeric"
2014-03-16 05:28:43 +04:00
case reflect.String:
2013-11-14 14:59:11 +04:00
if size > 0 && size < 65532 {
return fmt.Sprintf("varchar(%d)", size)
2014-03-16 05:28:43 +04:00
}
return "text"
case reflect.Struct:
if value.Type() == timeType {
return "timestamp with time zone"
2013-11-14 14:59:11 +04:00
}
default:
2014-03-16 05:28:43 +04:00
if _, ok := value.Interface().([]byte); ok {
return "bytea"
}
2013-11-14 14:59:11 +04:00
}
2014-03-16 05:28:43 +04:00
panic(fmt.Sprintf("invalid sql type %s (%s) for postgres", value.Type().Name(), value.Kind().String()))
2013-11-14 14:59:11 +04:00
}
2014-03-16 05:28:43 +04:00
func (s *postgres) PrimaryKeyTag(value reflect.Value, size int) string {
switch value.Kind() {
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uintptr:
2013-12-06 04:19:40 +04:00
return "serial PRIMARY KEY"
2014-03-16 05:28:43 +04:00
case reflect.Int64, reflect.Uint64:
2013-12-06 04:19:40 +04:00
return "bigserial PRIMARY KEY"
2013-11-14 14:59:11 +04:00
default:
panic("Invalid primary key type")
}
}
func (s *postgres) ReturningStr(key string) string {
2013-11-14 14:59:11 +04:00
return fmt.Sprintf("RETURNING \"%v\"", key)
}
func (s *postgres) Quote(key string) string {
return fmt.Sprintf("\"%s\"", key)
}