(t *testing.T)
| 1031 | {"analytics", "events", "score", "decimal", uint64(3), "BASE TABLE"}, |
| 1032 | {"analytics", "recent_events", "id", "bigint", uint64(1), "VIEW"}, |
| 1033 | }, nil, nil, nil) |
| 1034 | } |
| 1035 | |
| 1036 | func TestAutocommitRecoversAfterQueryError(t *testing.T) { |
| 1037 | h := NewDefaultDuckHarness() |
| 1038 | h.Setup(setup.SimpleSetup...) |
| 1039 | e, err := h.NewEngine(t) |
| 1040 | require.NoError(t, err) |
| 1041 | defer e.Close() |
| 1042 | |
| 1043 | ctx := enginetest.NewContext(h) |
nothing calls this directly
no test coverage detected