()
| 1817 | } |
| 1818 | } |
| 1819 | func (m *SqlInsert) String() string { |
| 1820 | w := expr.NewDefaultWriter() |
| 1821 | m.WriteDialect(w) |
| 1822 | return w.String() |
| 1823 | } |
| 1824 | |
| 1825 | // RewriteAsPrepareable rewite the insert as a ? substituteable query |
| 1826 | // INSERT INTO user (name) VALUES ("wonder-woman") -> |
nothing calls this directly
no test coverage detected