We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db51aca commit 4c0e908Copy full SHA for 4c0e908
src/Tool/Tool.jl
@@ -133,6 +133,10 @@ function get_fieldtype_from_coltype(coltype::String,
133
elseif (coltype == "ARRAY")
134
if (elttype == "_text" || elttype == "_varchar")
135
attrtype = "Vector{String}"
136
+ elseif (elttype == "_numeric")
137
+ attrtype = "Vector{Float64}"
138
+ elseif (elttype == "_int4")
139
+ attrtype = "Vector{Int64}"
140
elseif is_vector_of_enum(coltype,elttype,customtypes_names)
141
elttype = elttype[2:end] # remove the leading underscore
142
attrtype = "Vector{$(build_enum_name_w_module(elttype))}"
0 commit comments