(schema: string, table: string, constraint: string, comment: string)
| 96 | } |
| 97 | |
| 98 | export function commentConstraintQuery(schema: string, table: string, constraint: string, comment: string): Query { |
| 99 | return commentOn('CONSTRAINT', escapedName(schema, table), comment, constraint); |
| 100 | } |
| 101 | |
| 102 | export function commentTableQuery(schema: string, table: string, comment: string): Query { |
| 103 | return commentOn('TABLE', escapedName(schema, table), comment); |
nothing calls this directly
no test coverage detected