(schema: string, table: string, column: string, comment: string)
| 104 | } |
| 105 | |
| 106 | export function commentColumnQuery(schema: string, table: string, column: string, comment: string): Query { |
| 107 | return commentOn('COLUMN', escapedName(schema, table, column), comment); |
| 108 | } |
| 109 | |
| 110 | export function commentOnFunction(schema: string, functionName: string, comment: string): Query { |
| 111 | return commentOn('FUNCTION', escapedName(schema, functionName), comment); |
no test coverage detected