sql-gen icon indicating copy to clipboard operation
sql-gen copied to clipboard

Panics on different postgres types and custom types

Open yellowHatpro opened this issue 10 months ago • 13 comments

Problem

  • sql-gen panics on some postgres types, like: "_int8" => "i64", "_int4" => "i32", "_int2" => "i16", "_text" => "String", "jsonb" => "serde_json::Value", "time" => "chrono::NaiveTime", "bool" => "bool", "bpchar" => "String", "char" => "String", "character" => "String",
  • it also fails to work with custom types/enums

yellowHatpro avatar Apr 01 '24 07:04 yellowHatpro