import { type IMemoryTable } from "https://deno.land/x/pg_mem@3.0.3/interfaces.ts";
Methods
getColumns(): Iterable<ColumnDef>
List columns in this table
on(event: TableEvent, handler: () => any): ISubscription
Subscribe to an event on this table
listIndices(): IndexDef[]
List existing indices defined on this table
Inserts a raw item into this table. ⚠ Neither the record you provided, nor the returned value are the actual item stored. You wont be able to mutate internal state.