File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import { DEFAULT_SYSTEM_SCHEMAS } from './constants'
3
3
import { coalesceRowsToArray } from './helpers'
4
4
import {
5
5
columnsSql ,
6
- grantsSql ,
7
6
policiesSql ,
8
7
primaryKeysSql ,
9
8
relationshipsSql ,
@@ -236,14 +235,12 @@ COMMIT;`
236
235
const enrichedTablesSql = `
237
236
WITH tables AS (${ tablesSql } ),
238
237
columns AS (${ columnsSql } ),
239
- grants AS (${ grantsSql } ),
240
238
policies AS (${ policiesSql } ),
241
239
primary_keys AS (${ primaryKeysSql } ),
242
240
relationships AS (${ relationshipsSql } )
243
241
SELECT
244
242
*,
245
243
${ coalesceRowsToArray ( 'columns' , 'columns.table_id = tables.id' ) } ,
246
- ${ coalesceRowsToArray ( 'grants' , 'grants.table_id = tables.id' ) } ,
247
244
${ coalesceRowsToArray ( 'policies' , 'policies.table_id = tables.id' ) } ,
248
245
${ coalesceRowsToArray ( 'primary_keys' , 'primary_keys.table_id = tables.id' ) } ,
249
246
${ coalesceRowsToArray (
You can’t perform that action at this time.
0 commit comments