(out *strings.Builder, schemaName, tableName, columnName, comment string)
| 1413 | } |
| 1414 | |
| 1415 | func writeColumnCommentDiff(out *strings.Builder, schemaName, tableName, columnName, comment string) error { |
| 1416 | return writeComment(out, fmt.Sprintf("COLUMN \"%s\".\"%s\".\"%s\"", schemaName, tableName, columnName), comment) |
| 1417 | } |
| 1418 | |
| 1419 | func writeCommentDiff(out *strings.Builder, commentDiff *schema.CommentDiff) error { |
| 1420 | switch commentDiff.ObjectType { |
no test coverage detected