Skip to main content

Fields and Types

Wren Type

It’s the supported types and their alias name.

  • Boolean
    • Bool
  • SmallInt
    • Int2
  • Integer
    • Int4
  • BigInt
    • Int8
  • Real
    • Float4
  • Double
    • Float8
  • Numeric
    • Decimal
  • Varchar
    • String
    • Text
    • Name
  • Char
  • Json
  • Timestamp
  • Timestamp with time zone
  • Date
  • Bytea
  • BpChar
  • Oid
  • UUid
  • Inet

Array type

Follow the style of native pg type: _typeName. Add an underline prefix for type name.(e.g. _varchar)