Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/pg_mem/datatypes/index.ts>ArrayType

An in memory postgres DB instance for your unit tests
Go to Latest
class ArrayType
extends TypeBase<any[]>
import { ArrayType } from "https://deno.land/x/pg_mem@2.6.13/datatypes/index.ts";

Constructors

new
ArrayType(of: _IType, list: boolean)

Properties

readonly
name: string
readonly
primary: DataType

Methods

convertLiteral(elts: any)
doCast(value: Evaluator, _to: _IType)
doEquals(a: any[], b: any[]): boolean
doGt(a: any[], b: any[]): boolean
doLt(a: any[], b: any[]): boolean
toText(to: _IType, value: Evaluator)