77 lines
3.8 KiB
TypeScript
77 lines
3.8 KiB
TypeScript
import { entityKind } from "../entity.js";
|
|
import type { MigrationConfig, MigrationMeta } from "../migrator.js";
|
|
import { type BuildRelationalQueryResult, type DBQueryConfig, type Relation, type TableRelationalConfig, type TablesRelationalConfig } from "../relations.js";
|
|
import { SQL } from "../sql/sql.js";
|
|
import type { QueryWithTypings } from "../sql/sql.js";
|
|
import { type Casing, type UpdateSet } from "../utils.js";
|
|
import { MySqlColumn } from "./columns/common.js";
|
|
import type { MySqlDeleteConfig } from "./query-builders/delete.js";
|
|
import type { MySqlInsertConfig } from "./query-builders/insert.js";
|
|
import type { MySqlSelectConfig } from "./query-builders/select.types.js";
|
|
import type { MySqlUpdateConfig } from "./query-builders/update.js";
|
|
import type { MySqlSession } from "./session.js";
|
|
import { MySqlTable } from "./table.js";
|
|
export interface MySqlDialectConfig {
|
|
casing?: Casing;
|
|
}
|
|
export declare class MySqlDialect {
|
|
static readonly [entityKind]: string;
|
|
constructor(config?: MySqlDialectConfig);
|
|
migrate(migrations: MigrationMeta[], session: MySqlSession, config: Omit<MigrationConfig, 'migrationsSchema'>): Promise<void>;
|
|
escapeName(name: string): string;
|
|
escapeParam(_num: number): string;
|
|
escapeString(str: string): string;
|
|
private buildWithCTE;
|
|
buildDeleteQuery({ table, where, returning, withList, limit, orderBy }: MySqlDeleteConfig): SQL;
|
|
buildUpdateSet(table: MySqlTable, set: UpdateSet): SQL;
|
|
buildUpdateQuery({ table, set, where, returning, withList, limit, orderBy }: MySqlUpdateConfig): SQL;
|
|
/**
|
|
* Builds selection SQL with provided fields/expressions
|
|
*
|
|
* Examples:
|
|
*
|
|
* `select <selection> from`
|
|
*
|
|
* `insert ... returning <selection>`
|
|
*
|
|
* If `isSingleTable` is true, then columns won't be prefixed with table name
|
|
*/
|
|
private buildSelection;
|
|
private buildLimit;
|
|
private buildOrderBy;
|
|
private buildIndex;
|
|
buildSelectQuery({ withList, fields, fieldsFlat, where, having, table, joins, orderBy, groupBy, limit, offset, lockingClause, distinct, setOperators, useIndex, forceIndex, ignoreIndex, }: MySqlSelectConfig): SQL;
|
|
buildSetOperations(leftSelect: SQL, setOperators: MySqlSelectConfig['setOperators']): SQL;
|
|
buildSetOperationQuery({ leftSelect, setOperator: { type, isAll, rightSelect, limit, orderBy, offset }, }: {
|
|
leftSelect: SQL;
|
|
setOperator: MySqlSelectConfig['setOperators'][number];
|
|
}): SQL;
|
|
buildInsertQuery({ table, values: valuesOrSelect, ignore, onConflict, select }: MySqlInsertConfig): {
|
|
sql: SQL;
|
|
generatedIds: Record<string, unknown>[];
|
|
};
|
|
sqlToQuery(sql: SQL, invokeSource?: 'indexes' | undefined): QueryWithTypings;
|
|
buildRelationalQuery({ fullSchema, schema, tableNamesMap, table, tableConfig, queryConfig: config, tableAlias, nestedQueryRelation, joinOn, }: {
|
|
fullSchema: Record<string, unknown>;
|
|
schema: TablesRelationalConfig;
|
|
tableNamesMap: Record<string, string>;
|
|
table: MySqlTable;
|
|
tableConfig: TableRelationalConfig;
|
|
queryConfig: true | DBQueryConfig<'many', true>;
|
|
tableAlias: string;
|
|
nestedQueryRelation?: Relation;
|
|
joinOn?: SQL;
|
|
}): BuildRelationalQueryResult<MySqlTable, MySqlColumn>;
|
|
buildRelationalQueryWithoutLateralSubqueries({ fullSchema, schema, tableNamesMap, table, tableConfig, queryConfig: config, tableAlias, nestedQueryRelation, joinOn, }: {
|
|
fullSchema: Record<string, unknown>;
|
|
schema: TablesRelationalConfig;
|
|
tableNamesMap: Record<string, string>;
|
|
table: MySqlTable;
|
|
tableConfig: TableRelationalConfig;
|
|
queryConfig: true | DBQueryConfig<'many', true>;
|
|
tableAlias: string;
|
|
nestedQueryRelation?: Relation;
|
|
joinOn?: SQL;
|
|
}): BuildRelationalQueryResult<MySqlTable, MySqlColumn>;
|
|
}
|