Skip to main content
Module

x/kysely_deno_postgres_dialect/deps.ts>kysely.COMPARISON_OPERATORS

Kysely dialect for PostgreSQL using the deno-postgres client.
Latest
variable kysely.COMPARISON_OPERATORS
import { kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.1/deps.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",
]