(out *strings.Builder, diff *schema.MetadataDiff)
| 921 | } |
| 922 | |
| 923 | func writeCommentChanges(out *strings.Builder, diff *schema.MetadataDiff) error { |
| 924 | for _, commentDiff := range diff.CommentChanges { |
| 925 | if err := writeCommentDiff(out, commentDiff); err != nil { |
| 926 | return err |
| 927 | } |
| 928 | } |
| 929 | return nil |
| 930 | } |
| 931 | |
| 932 | func writeTableDiff(out *strings.Builder, tableDiff *schema.TableDiff) error { |
| 933 | switch tableDiff.Action { |
no test coverage detected