Module

x/kysely_postgrs_js_dialect/mod.ts>kysely.COMPARISON_OPERATORS

Kysely dialect for PostgreSQL using the Postgres.js client.
variable kysely.COMPARISON_OPERATORS
import { kysely } from "https://dotland.deno.dev/x/kysely_postgrs_js_dialect@v0.27.3/mod.ts";
const { COMPARISON_OPERATORS } = kysely;

type

readonly
[
"=",
"==",
"!=",
"<>",
">",
">=",
"<",
"<=",
"in",
"not in",
"is",
"is not",
"like",
"not like",
"match",
"ilike",
"not ilike",
"@>",
"<@",
"&&",
"?",
"?&",
"!<",
"!>",
"<=>",
"!~",
"~",
"~*",
"!~*",
"@@",
"@@@",
"!!",
"<->",
"regexp",
"is distinct from",
"is not distinct from",
]