| 487 | } |
| 488 | |
| 489 | type insertStatementImpl struct { |
| 490 | table WritableTable |
| 491 | columns []NonAliasColumn |
| 492 | rows [][]Expression |
| 493 | onDuplicateKeyUpdates []columnAssignment |
| 494 | comment string |
| 495 | ignore bool |
| 496 | } |
| 497 | |
| 498 | func (s *insertStatementImpl) Add( |
| 499 | row ...Expression) InsertStatement { |
nothing calls this directly
no outgoing calls
no test coverage detected