(schema: string, table: string, comment: string)
| 100 | } |
| 101 | |
| 102 | export function commentTableQuery(schema: string, table: string, comment: string): Query { |
| 103 | return commentOn('TABLE', escapedName(schema, table), comment); |
| 104 | } |
| 105 | |
| 106 | export function commentColumnQuery(schema: string, table: string, column: string, comment: string): Query { |
| 107 | return commentOn('COLUMN', escapedName(schema, table, column), comment); |
nothing calls this directly
no test coverage detected