File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 24
24
case
25
25
when c .relkind = ' r' then ' table'
26
26
when c .relkind = ' v' then ' view'
27
- when c .relkind = ' m' then ' materialized view '
28
- when c .relkind = ' f' then ' foreign table '
29
- when c .relkind = ' p' then ' partitioned table '
27
+ when c .relkind = ' m' then ' materialized_view '
28
+ when c .relkind = ' f' then ' foreign_table '
29
+ when c .relkind = ' p' then ' partitioned_table '
30
30
end as kind,
31
31
coalesce(
32
32
jsonb_agg(
Original file line number Diff line number Diff line change @@ -412,9 +412,9 @@ export const postgresTablePrivilegesSchema = Type.Object({
412
412
kind : Type . Union ( [
413
413
Type . Literal ( 'table' ) ,
414
414
Type . Literal ( 'view' ) ,
415
- Type . Literal ( 'materialized view ' ) ,
416
- Type . Literal ( 'foreign table ' ) ,
417
- Type . Literal ( 'partitioned table ' ) ,
415
+ Type . Literal ( 'materialized_view ' ) ,
416
+ Type . Literal ( 'foreign_table ' ) ,
417
+ Type . Literal ( 'partitioned_table ' ) ,
418
418
] ) ,
419
419
privileges : Type . Array (
420
420
Type . Object ( {
You can’t perform that action at this time.
0 commit comments