Some checks failed
CI / Lint (push) Successful in -27m59s
CI / Test (1.25) (push) Successful in -27m46s
CI / Test (1.24) (push) Failing after 59s
CI / Build (push) Successful in -28m14s
Integration Tests / Integration Tests (push) Failing after -28m16s
Release / Build and Release (push) Successful in 1m1s
feat(templ): ✨ added templ to command line that reads go template and outputs code Reviewed-on: #1 Co-authored-by: Hein <hein.puth@gmail.com> Co-committed-by: Hein <hein.puth@gmail.com>
69 lines
1.6 KiB
Go
69 lines
1.6 KiB
Go
package commontypes
|
|
|
|
// JavaTypeMap maps PostgreSQL types to Java types
|
|
var JavaTypeMap = map[string]string{
|
|
// Integer types
|
|
"integer": "Integer",
|
|
"int": "Integer",
|
|
"int4": "Integer",
|
|
"smallint": "Short",
|
|
"int2": "Short",
|
|
"bigint": "Long",
|
|
"int8": "Long",
|
|
"serial": "Integer",
|
|
"bigserial": "Long",
|
|
"smallserial": "Short",
|
|
|
|
// String types
|
|
"text": "String",
|
|
"varchar": "String",
|
|
"char": "String",
|
|
"character": "String",
|
|
"citext": "String",
|
|
"bpchar": "String",
|
|
"uuid": "UUID",
|
|
|
|
// Boolean
|
|
"boolean": "Boolean",
|
|
"bool": "Boolean",
|
|
|
|
// Float types
|
|
"real": "Float",
|
|
"float4": "Float",
|
|
"double precision": "Double",
|
|
"float8": "Double",
|
|
"numeric": "BigDecimal",
|
|
"decimal": "BigDecimal",
|
|
|
|
// Date/Time types
|
|
"timestamp": "Timestamp",
|
|
"timestamp without time zone": "Timestamp",
|
|
"timestamp with time zone": "Timestamp",
|
|
"timestamptz": "Timestamp",
|
|
"date": "Date",
|
|
"time": "Time",
|
|
"time without time zone": "Time",
|
|
"time with time zone": "Time",
|
|
"timetz": "Time",
|
|
|
|
// Binary
|
|
"bytea": "byte[]",
|
|
|
|
// JSON
|
|
"json": "String",
|
|
"jsonb": "String",
|
|
}
|
|
|
|
// SQLToJava converts SQL types to Java types
|
|
func SQLToJava(sqlType string, nullable bool) string {
|
|
baseType := ExtractBaseType(sqlType)
|
|
|
|
javaType, ok := JavaTypeMap[baseType]
|
|
if !ok {
|
|
javaType = "Object"
|
|
}
|
|
|
|
// Java uses wrapper classes for nullable types by default
|
|
return javaType
|
|
}
|