Skip to content

Commit

Permalink
Merge branch 'main' into ephys/14125
Browse files Browse the repository at this point in the history
  • Loading branch information
ephys committed Mar 22, 2022
2 parents f0eadf0 + 81c3e50 commit 2b6531f
Show file tree
Hide file tree
Showing 13 changed files with 3,231 additions and 1,883 deletions.
403 changes: 211 additions & 192 deletions docs/manual/other-topics/other-data-types.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions src/dialects/abstract/index.ts
Expand Up @@ -83,6 +83,10 @@ export type DialectSupports = {
GEOMETRY: boolean,
GEOGRAPHY: boolean,
REGEXP: boolean,
/**
* Case-insensitive regexp operator support ('~*' in postgres).
*/
IREGEXP: boolean,
HSTORE: boolean,
TSVECTOR: boolean,
deferrableConstraints: boolean,
Expand Down Expand Up @@ -167,6 +171,7 @@ export abstract class AbstractDialect {
RANGE: false,
GEOMETRY: false,
REGEXP: false,
IREGEXP: false,
GEOGRAPHY: false,
HSTORE: false,
TSVECTOR: false,
Expand Down
1 change: 1 addition & 0 deletions src/dialects/postgres/index.js
Expand Up @@ -42,6 +42,7 @@ class PostgresDialect extends AbstractDialect {
RANGE: true,
GEOMETRY: true,
REGEXP: true,
IREGEXP: true,
GEOGRAPHY: true,
JSON: true,
JSONB: true,
Expand Down

0 comments on commit 2b6531f

Please sign in to comment.