Fix formatting.
This commit is contained in:
parent
7a98f03e82
commit
34684df87a
|
@ -2133,7 +2133,7 @@ if (descriptions.length) {
|
|||
// repeat the search many times to check the first row is always the same
|
||||
let bookmark: string | number | undefined,
|
||||
hasNextPage: boolean | undefined = true,
|
||||
rowCount= 0
|
||||
rowCount = 0
|
||||
do {
|
||||
const response = await config.api.row.search(
|
||||
tableOrViewId,
|
||||
|
|
|
@ -223,7 +223,7 @@ const COLUMN_DEFINITION_METADATA: Record<string, ColumnDefinitionMetadata> = {
|
|||
|
||||
class SqlServerIntegration extends Sql implements DatasourcePlus {
|
||||
private readonly config: MSSQLConfig
|
||||
private index= 0
|
||||
private index = 0
|
||||
private client?: sqlServer.ConnectionPool
|
||||
|
||||
MASTER_TABLES = [
|
||||
|
|
|
@ -149,7 +149,7 @@ const SCHEMA: Integration = {
|
|||
class PostgresIntegration extends Sql implements DatasourcePlus {
|
||||
private readonly client: Client
|
||||
private readonly config: PostgresConfig
|
||||
private index= 1
|
||||
private index = 1
|
||||
private open: boolean
|
||||
|
||||
PRIMARY_KEYS_SQL = () => `
|
||||
|
|
|
@ -245,7 +245,7 @@ describe("Captures of real examples", () => {
|
|||
tableNames.push(generator.guid())
|
||||
}
|
||||
const aliasing = new AliasTables(tableNames)
|
||||
let alias= ""
|
||||
let alias = ""
|
||||
for (let table of tableNames) {
|
||||
alias = aliasing.getAlias(table)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue