Skip to main content
Module

x/pg_mem/functions/system.ts

An in memory postgres DB instance for your unit tests
Go to Latest
File
import { Types } from '../datatypes/index.ts';import { FunctionDefinition } from '../interfaces.ts';
export const systemFunctions: FunctionDefinition[] = [ { // ugly hack... name: 'current_schema', returns: Types.text(), implementation: () => 'public', },]