awsdatapi.alltypes.test.ts — drizzle-orm Source File
Architecture documentation for awsdatapi.alltypes.test.ts, a typescript file in the drizzle-orm codebase.
Entity Profile
Source Code
/* eslint-disable unicorn/no-empty-file */
// import 'dotenv/config';
// import { RDSDataClient } from '@aws-sdk/client-rds-data';
// import { fromIni } from '@aws-sdk/credential-providers';
// import type { TestFn } from 'ava';
// import anyTest from 'ava';
// import * as dotenv from 'dotenv';
// import { name, sql } from 'drizzle-orm';
// import type { AwsDataApiPgDatabase } from 'drizzle-orm/aws-data-api/pg';
// import { drizzle } from 'drizzle-orm/aws-data-api/pg';
// import {
// bigint,
// bigserial,
// boolean,
// date,
// decimal,
// doublePrecision,
// integer,
// json,
// jsonb,
// numeric,
// pgEnum,
// pgTable,
// real,
// serial,
// smallint,
// text,
// time,
// timestamp,
// varchar,
// } from 'drizzle-orm/pg-core';
// dotenv.config();
// export const allColumns = pgTable('all_columns', {
// sm: smallint('smallint'),
// smdef: smallint('smallint_def').default(10),
// int: integer('integer'),
// intdef: integer('integer_def').default(10),
// numeric: numeric('numeric'),
// numeric2: numeric('numeric2', { precision: 5 }),
// numeric3: numeric('numeric3', { scale: 2 }),
// numeric4: numeric('numeric4', { precision: 5, scale: 2 }),
// numericdef: numeric('numeridef').default('100'),
// bigint: bigint('bigint', { mode: 'number' }),
// bigintdef: bigint('bigintdef', { mode: 'number' }).default(100),
// bool: boolean('boolean'),
// booldef: boolean('boolean_def').default(true),
// text: text('text'),
// textdef: text('textdef').default('text'),
// varchar: varchar('varchar'),
// varchardef: varchar('varchardef').default('text'),
// serial: serial('serial'),
// bigserial: bigserial('bigserial', { mode: 'number' }),
// decimal: decimal('decimal', { precision: 100, scale: 2 }),
// decimaldef: decimal('decimaldef', { precision: 100, scale: 2 }).default('100.0'),
// doublePrecision: doublePrecision('doublePrecision'),
// doublePrecisiondef: doublePrecision('doublePrecisiondef').default(100),
// real: real('real'),
// ... (486 more lines)
Source
Frequently Asked Questions
What does awsdatapi.alltypes.test.ts do?
awsdatapi.alltypes.test.ts is a source file in the drizzle-orm codebase, written in typescript.
Where is awsdatapi.alltypes.test.ts in the architecture?
awsdatapi.alltypes.test.ts is located at integration-tests/tests/awsdatapi.alltypes.test.ts (directory: integration-tests/tests).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free