(columns: ReadonlySet<string>, table: string, column: string)
| 150 | ); |
| 151 | |
| 152 | const optionalColumn = (columns: ReadonlySet<string>, table: string, column: string): string => |
| 153 | columns.has(column) ? `${quoteIdent(table)}.${quoteIdent(column)}` : "NULL"; |
| 154 | |
| 155 | const isLocalV1Database = async (client: Client): Promise<boolean> => { |
| 156 | if (!(await tableExists(client, "source"))) return false; |
no test coverage detected