(schema: string, functionName: string, comment: string)
| 108 | } |
| 109 | |
| 110 | export function commentOnFunction(schema: string, functionName: string, comment: string): Query { |
| 111 | return commentOn('FUNCTION', escapedName(schema, functionName), comment); |
| 112 | } |
| 113 | |
| 114 | // This is used when historical is disabled so that we can perform bulk updates |
| 115 | export function constraintDeferrableQuery(table: string, constraint: string): string { |
no test coverage detected