Skip to main content
Module

x/kysely_deno_postgres_dialect/mod.ts>kysely.BINARY_OPERATORS

Kysely dialect for PostgreSQL using the deno-postgres client.
Latest
variable kysely.BINARY_OPERATORS
import { kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.1/mod.ts";
const { BINARY_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",
"+",
"-",
"*",
"/",
"%",
"^",
"&",
"|",
"#",
"<<",
">>",
"&&",
"||",
]