We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be7bb80 commit 5db30c2Copy full SHA for 5db30c2
web/src/helpers/metadataProcessor.ts
@@ -264,7 +264,7 @@ export async function processAllMetadata(forceRefresh = false) : Promise<Metadat
264
265
console.log('[minusx] Filtering fields for', validTableNames.size, 'valid tables...')
266
267
- const filteredFields = cards.length < 100 ? allFields : allFields.filter((field: any) => {
+ const filteredFields = cards.length < 100 || allFields.length < 20000 ? allFields : allFields.filter((field: any) => {
268
const tableName = get(field, 'table_name')
269
const tableSchema = get(field, 'schema')
270
const fullTableName = tableSchema ? `${tableSchema}.${tableName}` : tableName
0 commit comments