varbinary.ts — drizzle-orm Source File
Architecture documentation for varbinary.ts, a typescript file in the drizzle-orm codebase. 6 imports, 1 dependents.
Entity Profile
Dependency Diagram
graph LR e6c0e668_83dd_e931_0353_2d612a8d53b8["varbinary.ts"] 835b37b8_5537_93b3_6081_c47371e60b11["common.ts"] e6c0e668_83dd_e931_0353_2d612a8d53b8 --> 835b37b8_5537_93b3_6081_c47371e60b11 2dc784c6_95e9_4e28_ec81_7caf4acbd426["column-builder.ts"] e6c0e668_83dd_e931_0353_2d612a8d53b8 --> 2dc784c6_95e9_4e28_ec81_7caf4acbd426 05f0a280_d0c9_693a_a4bf_83cc671012d2["column.ts"] e6c0e668_83dd_e931_0353_2d612a8d53b8 --> 05f0a280_d0c9_693a_a4bf_83cc671012d2 27705a9d_afe9_57dd_8c97_e52d8a67d426["entity.ts"] e6c0e668_83dd_e931_0353_2d612a8d53b8 --> 27705a9d_afe9_57dd_8c97_e52d8a67d426 744f5864_8de4_6d1f_dcfc_5ef4ae408c9a["table.ts"] e6c0e668_83dd_e931_0353_2d612a8d53b8 --> 744f5864_8de4_6d1f_dcfc_5ef4ae408c9a ecce3253_1e75_a87f_27b3_ca87e81a3024["utils.ts"] e6c0e668_83dd_e931_0353_2d612a8d53b8 --> ecce3253_1e75_a87f_27b3_ca87e81a3024 a70c1ec7_29ee_10ca_2b05_4be0c246a540["all.ts"] a70c1ec7_29ee_10ca_2b05_4be0c246a540 --> e6c0e668_83dd_e931_0353_2d612a8d53b8 style e6c0e668_83dd_e931_0353_2d612a8d53b8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import type { ColumnBuilderBaseConfig, ColumnBuilderRuntimeConfig, MakeColumnConfig } from '~/column-builder.ts';
import type { ColumnBaseConfig } from '~/column.ts';
import { entityKind } from '~/entity.ts';
import type { AnySingleStoreTable } from '~/singlestore-core/table.ts';
import { getColumnNameAndConfig } from '~/utils.ts';
import { SingleStoreColumn, SingleStoreColumnBuilder } from './common.ts';
export type SingleStoreVarBinaryBuilderInitial<TName extends string> = SingleStoreVarBinaryBuilder<{
name: TName;
dataType: 'string';
columnType: 'SingleStoreVarBinary';
data: string;
driverParam: string;
enumValues: undefined;
generated: undefined;
}>;
export class SingleStoreVarBinaryBuilder<T extends ColumnBuilderBaseConfig<'string', 'SingleStoreVarBinary'>>
extends SingleStoreColumnBuilder<T, SingleStoreVarbinaryOptions>
{
static override readonly [entityKind]: string = 'SingleStoreVarBinaryBuilder';
/** @internal */
constructor(name: T['name'], config: SingleStoreVarbinaryOptions) {
super(name, 'string', 'SingleStoreVarBinary');
this.config.length = config?.length;
}
/** @internal */
override build<TTableName extends string>(
table: AnySingleStoreTable<{ name: TTableName }>,
): SingleStoreVarBinary<MakeColumnConfig<T, TTableName>> {
return new SingleStoreVarBinary<MakeColumnConfig<T, TTableName>>(
table,
this.config as ColumnBuilderRuntimeConfig<any, any>,
);
}
}
export class SingleStoreVarBinary<
T extends ColumnBaseConfig<'string', 'SingleStoreVarBinary'>,
> extends SingleStoreColumn<T, SingleStoreVarbinaryOptions> {
static override readonly [entityKind]: string = 'SingleStoreVarBinary';
length: number | undefined = this.config.length;
override mapFromDriverValue(value: string | Buffer | Uint8Array): string {
if (typeof value === 'string') return value;
if (Buffer.isBuffer(value)) return value.toString();
const str: string[] = [];
for (const v of value) {
str.push(v === 49 ? '1' : '0');
}
return str.join('');
}
getSQLType(): string {
return this.length === undefined ? `varbinary` : `varbinary(${this.length})`;
}
}
export interface SingleStoreVarbinaryOptions {
length: number;
}
export function varbinary(
config: SingleStoreVarbinaryOptions,
): SingleStoreVarBinaryBuilderInitial<''>;
export function varbinary<TName extends string>(
name: TName,
config: SingleStoreVarbinaryOptions,
): SingleStoreVarBinaryBuilderInitial<TName>;
export function varbinary(a?: string | SingleStoreVarbinaryOptions, b?: SingleStoreVarbinaryOptions) {
const { name, config } = getColumnNameAndConfig<SingleStoreVarbinaryOptions>(a, b);
return new SingleStoreVarBinaryBuilder(name, config);
}
Domain
Subdomains
Functions
Dependencies
- column-builder.ts
- column.ts
- common.ts
- entity.ts
- table.ts
- utils.ts
Imported By
Source
Frequently Asked Questions
What does varbinary.ts do?
varbinary.ts is a source file in the drizzle-orm codebase, written in typescript. It belongs to the DrizzleORM domain, RelationalQuery subdomain.
What functions are defined in varbinary.ts?
varbinary.ts defines 1 function(s): varbinary.
What does varbinary.ts depend on?
varbinary.ts imports 6 module(s): column-builder.ts, column.ts, common.ts, entity.ts, table.ts, utils.ts.
What files import varbinary.ts?
varbinary.ts is imported by 1 file(s): all.ts.
Where is varbinary.ts in the architecture?
varbinary.ts is located at drizzle-orm/src/singlestore-core/columns/varbinary.ts (domain: DrizzleORM, subdomain: RelationalQuery, directory: drizzle-orm/src/singlestore-core/columns).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free