Fix formatting.

This commit is contained in:
Sam Rose 2024-12-09 20:59:13 +00:00
parent 7a98f03e82
commit 34684df87a
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View File

@ -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,

View File

@ -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 = [

View File

@ -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 = () => `

View File

@ -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)
}