Skip to main content
Module

x/kysely_deno_postgres_dialect/mod.ts>kysely.PartitionByItemNode

Kysely dialect for PostgreSQL using the deno-postgres client.
Go to Latest
interface kysely.PartitionByItemNode
implements OperationNode
Re-export
import { type kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.0/mod.ts";
const { PartitionByItemNode } = kysely;

Properties

readonly
kind: "PartitionByItemNode"
readonly
partitionBy: SimpleReferenceExpressionNode
variable kysely.PartitionByItemNode
Re-export
import { kysely } from "https://deno.land/x/kysely_deno_postgres_dialect@v0.27.0/mod.ts";
const { PartitionByItemNode } = kysely;

type

Readonly<{ is(node: OperationNode): node is PartitionByItemNode; create(partitionBy: SimpleReferenceExpressionNode): PartitionByItemNode; }>