コード例 #1
0
ファイル: dialect.go プロジェクト: theduke/go-dukedb
func (baseDialect) DetermineColumnType(attr *db.Attribute) (string, apperror.Error) {
	if attr.BackendType() != "" {
		return attr.BackendType(), nil
	}
	if attr.BackendMarshal() {
		return "text", nil
	}

	if attr.BackendEmbed() {
		return "", apperror.New("unsupported_embed", "The SQL backend does not support embedding. Use marshalling instead.")
	}

	switch attr.Type().Kind() {
	case reflect.Bool:
		return "boolean", nil

	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uintptr:
		if attr.AutoIncrement() {
			return "serial", nil
		}
		return "integer", nil

	case reflect.Int64, reflect.Uint64:
		if attr.AutoIncrement() {
			return "bigserial", nil
		}
		return "bigint", nil

	case reflect.Float32, reflect.Float64:
		return "numeric", nil

	case reflect.String:
		if attr.Max() > 0 && attr.Max() < 65532 {
			return fmt.Sprintf("varchar(%v)", attr.Max()), nil
		}
		return "text", nil

	case reflect.Struct, reflect.Ptr:
		if attr.StructName() == "time.Time" {
			return "timestamp with time zone", nil
		}

		if strings.HasSuffix(attr.StructName(), "go-dukedb.Point") {
			return "point", nil
		}

	case reflect.Map:
		return "hstore", nil

	case reflect.Slice:
		if attr.StructName() == "byte" {
			return "bytea", nil
		}
	}
	return "", apperror.New("unsupported_column_type",
		fmt.Sprintf("Field %v has unsupported type %v (postgres)", attr.Name(), attr.Type()))
}
コード例 #2
0
ファイル: translator.go プロジェクト: theduke/go-dukedb
func (OrientTranslator) DetermineColumnType(attr *db.Attribute) (string, apperror.Error) {
	if attr.BackendType() != "" {
		return attr.BackendType(), nil
	}
	if attr.BackendMarshal() {
		return "string", nil
	}
	if attr.BackendEmbed() {
		return "embedded", nil
	}

	switch attr.Type().Kind() {
	case reflect.Bool:
		return "boolean", nil

	case reflect.Int8, reflect.Int16, reflect.Uint8:
		return "short", nil

	case reflect.Int32, reflect.Uint16:
		return "integer", nil

	case reflect.Int64, reflect.Int, reflect.Uint32, reflect.Uint64, reflect.Uint:
		return "long", nil

	case reflect.Float32:
		return "float", nil

	case reflect.Float64:
		return "double", nil

	case reflect.String:
		return "string", nil

	case reflect.Struct, reflect.Ptr:
		if attr.StructName() == "time.Time" {
			return "datetime", nil
		}

	case reflect.Slice:
		if attr.StructName() == "byte" {
			return "byte", nil
		}
	}
	return "", apperror.New("unsupported_column_type",
		fmt.Sprintf("Field %v has unsupported type %v (orientdb)", attr.Name(), attr.Type()))
}