mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 18:46:00 +00:00
incremental data loading, flattened some sqltree types
This commit is contained in:
1
packages/types/dialect.d.ts
vendored
1
packages/types/dialect.d.ts
vendored
@@ -1,5 +1,6 @@
|
||||
export interface SqlDialect {
|
||||
rangeSelect?: boolean;
|
||||
limitSelect?: boolean;
|
||||
offsetFetchRangeSyntax?: boolean;
|
||||
quoteIdentifier(s: string): string;
|
||||
}
|
||||
|
||||
2
packages/types/dumper.d.ts
vendored
2
packages/types/dumper.d.ts
vendored
@@ -1,7 +1,9 @@
|
||||
import { TableInfo } from "./dbinfo";
|
||||
import { SqlDialect } from "./dialect";
|
||||
|
||||
export interface SqlDumper {
|
||||
s: string;
|
||||
dialect: SqlDialect;
|
||||
|
||||
putRaw(s: string);
|
||||
put(format: string, ...args);
|
||||
|
||||
Reference in New Issue
Block a user