Skip to content

Commit

Permalink
feat: add postgres range types (#1086)
Browse files Browse the repository at this point in the history
  • Loading branch information
kansson authored Jul 27, 2024
1 parent 9b4d6dd commit a52a5c3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/operation-node/data-type-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@ const SIMPLE_COLUMN_DATA_TYPES = [
'jsonb',
'blob',
'varbinary',
'int4range',
'int4multirange',
'int8range',
'int8multirange',
'numrange',
'nummultirange',
'tsrange',
'tsmultirange',
'tstzrange',
'tstzmultirange',
'daterange',
'datemultirange',
] as const

const COLUMN_DATA_TYPE_REGEX = [
Expand Down

0 comments on commit a52a5c3

Please sign in to comment.