(t *testing.T)
| 898 | } |
| 899 | |
| 900 | func TestMultiInsert(t *testing.T) { |
| 901 | RunWithSchema(defaultSchema, t, func(db *DB, t *testing.T, now string) { |
| 902 | loadDefaultFixture(db, t) |
| 903 | q := db.Rebind(`INSERT INTO employees (name, id) VALUES (?, ?), (?, ?);`) |
| 904 | db.MustExec(q, |
| 905 | "Name1", 400, |
| 906 | "name2", 500, |
| 907 | ) |
| 908 | }) |
| 909 | } |
| 910 | |
| 911 | // FIXME: this function is kinda big but it slows things down to be constantly |
| 912 | // loading and reloading the schema.. |
nothing calls this directly
no test coverage detected