()
| 1855 | return buf.String() |
| 1856 | } |
| 1857 | func (m *SqlInsert) ColumnNames() []string { |
| 1858 | cols := make([]string, 0) |
| 1859 | for _, col := range m.Columns { |
| 1860 | cols = append(cols, col.Key()) |
| 1861 | } |
| 1862 | return cols |
| 1863 | } |
| 1864 | |
| 1865 | func (m *SqlUpsert) Keyword() lex.TokenType { return lex.TokenUpsert } |
| 1866 | func (m *SqlUpsert) WriteDialect(w expr.DialectWriter) {} |