(t *testing.T)
| 2114 | func TestPkOrdinalsDDL(t *testing.T) { |
| 2115 | t.Skip("wait for fix") |
| 2116 | enginetest.TestPkOrdinalsDDL(t, NewDefaultDuckHarness()) |
| 2117 | } |
| 2118 | |
| 2119 | func TestPkOrdinalsDML(t *testing.T) { |
| 2120 | enginetest.TestPkOrdinalsDML(t, NewDefaultDuckHarness()) |
| 2121 | } |
| 2122 | |
| 2123 | func TestDropDatabase(t *testing.T) { |
| 2124 | enginetest.TestDropDatabase(t, NewDefaultDuckHarness()) |
| 2125 | } |
| 2126 | |
| 2127 | func TestCreateForeignKeys(t *testing.T) { |
| 2128 | t.Skip("wait for support") |
| 2129 | enginetest.TestCreateForeignKeys(t, NewDefaultDuckHarness()) |
| 2130 | } |
| 2131 | |
| 2132 | func TestDropForeignKeys(t *testing.T) { |
| 2133 | t.Skip("wait for support") |
| 2134 | enginetest.TestDropForeignKeys(t, NewDefaultDuckHarness()) |
| 2135 | } |
| 2136 | |
| 2137 | func TestForeignKeys(t *testing.T) { |
| 2138 | t.Skip("wait for support") |
| 2139 | enginetest.TestForeignKeys(t, NewDefaultDuckHarness()) |
| 2140 | } |
| 2141 | |
| 2142 | func TestFulltextIndexes(t *testing.T) { |
| 2143 | t.Skip("wait for support") |
| 2144 | enginetest.TestFulltextIndexes(t, NewDefaultDuckHarness()) |
| 2145 | } |
| 2146 | |
| 2147 | func TestCreateCheckConstraints(t *testing.T) { |
| 2148 | t.Skip("wait for support") |
| 2149 | enginetest.TestCreateCheckConstraints(t, NewDefaultDuckHarness()) |
| 2150 | } |
| 2151 | |
| 2152 | func TestChecksOnInsert(t *testing.T) { |
| 2153 | t.Skip("wait for support") |
| 2154 | enginetest.TestChecksOnInsert(t, NewDefaultDuckHarness()) |
| 2155 | } |
| 2156 | |
| 2157 | func TestChecksOnUpdate(t *testing.T) { |
| 2158 | t.Skip("wait for support") |
| 2159 | enginetest.TestChecksOnUpdate(t, NewDefaultDuckHarness()) |
| 2160 | } |
| 2161 | |
| 2162 | func TestDisallowedCheckConstraints(t *testing.T) { |
| 2163 | t.Skip("wait for support") |
| 2164 | enginetest.TestDisallowedCheckConstraints(t, NewDefaultDuckHarness()) |
| 2165 | } |
| 2166 | |
| 2167 | func TestDropCheckConstraints(t *testing.T) { |
| 2168 | t.Skip("wait for support") |
| 2169 | enginetest.TestDropCheckConstraints(t, NewDefaultDuckHarness()) |
| 2170 | } |
| 2171 | |
| 2172 | func TestReadOnly(t *testing.T) { |
| 2173 | t.Skip("wait for fix") |
nothing calls this directly
no test coverage detected