(t *testing.T, harness enginetest.Harness)
| 1500 | // DuckDB reports a native conversion error for DATETIME and accepts the |
| 1501 | // valid date prefix. The exact parent has the same behavior for this SQL. |
| 1502 | "insert into t values ('2020-01-01 a')", |
| 1503 | ) |
| 1504 | enginetest.TestInsertIntoErrors(t, harness) |
| 1505 | } |
| 1506 | |
| 1507 | func TestBrokenInsertScripts(t *testing.T) { |
| 1508 | t.Skip("wait for fix") |
| 1509 | enginetest.TestBrokenInsertScripts(t, NewDefaultDuckHarness()) |
| 1510 | } |
| 1511 | |
| 1512 | func TestGeneratedColumns(t *testing.T) { |
| 1513 | testGeneratedColumns(t, NewDefaultDuckHarness()) |
| 1514 | } |
| 1515 | |
| 1516 | func TestGeneratedColumnPlans(t *testing.T) { |
| 1517 | t.Skip("wait for fix") |
| 1518 | enginetest.TestGeneratedColumnPlans(t, NewDefaultDuckHarness()) |
| 1519 | } |
| 1520 | |
| 1521 | func TestSysbenchPlans(t *testing.T) { |
| 1522 | t.Skip("wait for fix") |
| 1523 | enginetest.TestSysbenchPlans(t, NewDefaultDuckHarness()) |
| 1524 | } |
| 1525 | |
| 1526 | func TestStatistics(t *testing.T) { |
| 1527 | t.Skip("wait for fix") |
| 1528 | enginetest.TestStatistics(t, NewDefaultDuckHarness()) |
| 1529 | } |
| 1530 | |
| 1531 | func TestStatisticIndexFilters(t *testing.T) { |
| 1532 | t.Skip("wait for fix") |
no test coverage detected