MCPcopy Create free account
hub / github.com/araddon/qlbridge / ColumnNames

Method ColumnNames

rel/sql.go:1857–1863  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1855 return buf.String()
1856}
1857func (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
1865func (m *SqlUpsert) Keyword() lex.TokenType { return lex.TokenUpsert }
1866func (m *SqlUpsert) WriteDialect(w expr.DialectWriter) {}

Callers

nothing calls this directly

Calls 1

KeyMethod · 0.65

Tested by

no test coverage detected