Add more type

This commit is contained in:
2023-04-06 21:48:35 +02:00
parent 56c67981db
commit b31c8c87f1

View File

@@ -50,7 +50,14 @@ class FunctionGenerator(private val functionsDirectories: List<URI>) {
"character" -> "String" "character" -> "String"
"char" -> "String" "char" -> "String"
"int" -> "Int" "int" -> "Int"
"smallint" -> "Int"
"integer" -> "Int"
"bigint" -> "Int"
"decimal" -> "Float"
"real" -> "Float"
"double precision" -> "Float"
"float" -> "Float" "float" -> "Float"
"numeric" -> "Number"
"boolean" -> "Boolean" "boolean" -> "Boolean"
"json" -> "S" "json" -> "S"
"jsonb" -> "S" "jsonb" -> "S"