import { type IMemoryDb } from "https://dotland.deno.dev/x/pg_mem@2.6.13/index.ts";
Methods
getTable<T = any>(table: string): IMemoryTable<T>
Get a table to inspect it (in the public schema... this is a shortcut for db.public.getTable())
getTable<T = any>(table: string, nullIfNotFound?: boolean): IMemoryTable<T> | null
on(event: GlobalEvent, handler: () => any): ISubscription
on(event: GlobalEvent, handler: () => any): ISubscription
on(event: TableEvent, handler: (table: string) => any): ISubscription
Subscribe to an event on all tables
backup(): IBackup
Creates a restore point. 👉 This operation is O(1) (instantaneous, even with millions of records).
registerExtension(name: string, install: (schema: ISchema) => void): this
Registers an extension (that can be installed using the 'create extension' statement)
registerLanguage(languageName: string, compiler: LanguageCompiler): this
Registers a new language, usable in 'DO' blocks, or in 'CREATE FUNCTION' blocks