This commit is contained in:
Nybkox
2025-04-01 17:32:24 +02:00
parent f2c109116c
commit 83f69d89ff
35 changed files with 1096 additions and 75 deletions

View File

@@ -33,6 +33,7 @@ export interface QueryOptions {
discardResult?: boolean;
importSqlDump?: boolean;
range?: { offset: number; limit: number };
readonly?: boolean;
}
export interface WriteTableOptions {

View File

@@ -7,6 +7,7 @@ export interface QueryResultColumn {
columnName: string;
notNull: boolean;
autoIncrement?: boolean;
dataType?: string;
}
export interface QueryResult {

View File

@@ -40,6 +40,7 @@ export type TestEngineInfo = {
skipPkDrop?: boolean;
skipOrderBy?: boolean;
skipImportModel?: boolean;
skipTriggers?: boolean;
forceSortResults?: boolean;
forceSortStructureColumns?: boolean;