Skip to content

Commit

Permalink
Merge branch 'master' into controlled-transaction
Browse files Browse the repository at this point in the history
  • Loading branch information
igalklebanov authored Aug 2, 2024
2 parents aff3f7a + bb08677 commit 17f78e7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 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
4 changes: 2 additions & 2 deletions src/raw-builder/sql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ export interface Sql {
* select "first_name" from person
* ```
*
* The refefences can also include a table name:
* The references can also include a table name:
*
* ```ts
* const columnRef = 'person.first_name'
Expand All @@ -161,7 +161,7 @@ export interface Sql {
* select "person"."first_name" from person
* ```
*
* The refefences can also include a schema on supported databases:
* The references can also include a schema on supported databases:
*
* ```ts
* const columnRef = 'public.person.first_name'
Expand Down

0 comments on commit 17f78e7

Please sign in to comment.