(formatter *Formatter)
| 2753 | } |
| 2754 | |
| 2755 | func (w *WindowClause) FormatSQL(formatter *Formatter) { |
| 2756 | formatter.WriteString("WINDOW ") |
| 2757 | for i, window := range w.Windows { |
| 2758 | window.FormatSQL(formatter) |
| 2759 | if i != len(w.Windows)-1 { |
| 2760 | formatter.WriteString(", ") |
| 2761 | } |
| 2762 | } |
| 2763 | } |
| 2764 | |
| 2765 | func (w *WindowExpr) FormatSQL(formatter *Formatter) { |
| 2766 | formatter.WriteByte('(') |
nothing calls this directly
no test coverage detected