xo::db::postgresql instproc map_datatype

 <instance of xo::db::postgresql[i]> map_datatype

Defined in

Testcases:
xotcl_core_tutorial_2, xotcl-core
Source code:
switch -- $type {
  string    { set type text }
  long_text { set type text }
  date      { set type "timestamp with timezone" }
  ltree     { set type [expr {[::xo::dc has_ltree] ? "ltree" : "text" }] }
  default   { return [next] }
}
return $type
XQL Not present:
Generic, PostgreSQL, Oracle
[ hide source ] | [ make this the default ]
Show another procedure: