SqlInsert SQL Insert Statement
| 149 | } |
| 150 | // SqlInsert SQL Insert Statement |
| 151 | SqlInsert struct { |
| 152 | kw lex.TokenType // Insert, Replace |
| 153 | Table string // table name |
| 154 | Columns Columns // Column Names |
| 155 | Rows [][]*ValueColumn // Values to insert |
| 156 | Select *SqlSelect // |
| 157 | } |
| 158 | // SqlUpsert SQL Upsert Statement |
| 159 | SqlUpsert struct { |
| 160 | Columns Columns |
nothing calls this directly
no outgoing calls
no test coverage detected