mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-29 19:39:52 -05:00
unskipping tests
This commit is contained in:
@@ -175,8 +175,6 @@ github.com/dolthub/flatbuffers v1.13.0-dh.1 h1:OWJdaPep22N52O/0xsUevxJ6Qfw1M2txC
|
||||
github.com/dolthub/flatbuffers v1.13.0-dh.1/go.mod h1:CorYGaDmXjHz1Z7i50PYXG1Ricn31GcA2wNOTFIQAKE=
|
||||
github.com/dolthub/fslock v0.0.3 h1:iLMpUIvJKMKm92+N1fmHVdxJP5NdyDK5bK7z7Ba2s2U=
|
||||
github.com/dolthub/fslock v0.0.3/go.mod h1:QWql+P17oAAMLnL4HGB5tiovtDuAjdDTPbuqx7bYfa0=
|
||||
github.com/dolthub/go-mysql-server v0.12.1-0.20220907002052-e1c284670761 h1:ol1aryiclxxL3hgrBhyWQGB9HTyh/Lda8D1ISXmvXng=
|
||||
github.com/dolthub/go-mysql-server v0.12.1-0.20220907002052-e1c284670761/go.mod h1:F/UtM55EgpqIiWoXwPg0jx8euPYwUpJsKHLiFtEjKwM=
|
||||
github.com/dolthub/go-mysql-server v0.12.1-0.20220907165903-fe82a590372b h1:EKWL9zKIu6fr9sWGI/zaVSlKp9SKejFyQqs9fHzVq6A=
|
||||
github.com/dolthub/go-mysql-server v0.12.1-0.20220907165903-fe82a590372b/go.mod h1:F/UtM55EgpqIiWoXwPg0jx8euPYwUpJsKHLiFtEjKwM=
|
||||
github.com/dolthub/ishell v0.0.0-20220112232610-14e753f0f371 h1:oyPHJlzumKta1vnOQqUnfdz+pk3EmnHS3Nd0cCT0I2g=
|
||||
|
||||
@@ -75,9 +75,7 @@ func (dt *UnscopedDiffTable) HandledFilters(filters []sql.Expression) []sql.Expr
|
||||
|
||||
// WithFilters returns a new sql.Table instance with the filters applied
|
||||
func (dt *UnscopedDiffTable) WithFilters(ctx *sql.Context, filters []sql.Expression) sql.Table {
|
||||
if dt.partitionFilters == nil {
|
||||
dt.partitionFilters = FilterFilters(filters, ColumnPredicate(filterColumnNameSet))
|
||||
}
|
||||
dt.partitionFilters = FilterFilters(filters, ColumnPredicate(filterColumnNameSet))
|
||||
|
||||
if len(dt.partitionFilters) > 0 {
|
||||
commitCheck, err := commitFilterForDiffTableFilterExprs(dt.partitionFilters)
|
||||
|
||||
@@ -17,6 +17,7 @@ package enginetest
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"github.com/dolthub/go-mysql-server/sql/expression"
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
@@ -25,7 +26,6 @@ import (
|
||||
"github.com/dolthub/go-mysql-server/enginetest/scriptgen/setup"
|
||||
"github.com/dolthub/go-mysql-server/server"
|
||||
"github.com/dolthub/go-mysql-server/sql"
|
||||
"github.com/dolthub/go-mysql-server/sql/expression"
|
||||
"github.com/dolthub/go-mysql-server/sql/mysql_db"
|
||||
"github.com/dolthub/go-mysql-server/sql/plan"
|
||||
"github.com/dolthub/vitess/go/mysql"
|
||||
@@ -208,7 +208,7 @@ func TestSingleQueryPrepared(t *testing.T) {
|
||||
|
||||
func TestSingleScriptPrepared(t *testing.T) {
|
||||
t.Skip()
|
||||
|
||||
|
||||
s := []setup.SetupScript{
|
||||
{
|
||||
"create table test (pk int primary key, c1 int)",
|
||||
|
||||
@@ -327,8 +327,7 @@ var DoltRevisionDbScripts = []queries.ScriptTest{
|
||||
},
|
||||
},
|
||||
{
|
||||
SkipPrepared: true,
|
||||
Name: "database revision specs: branch-qualified revision spec",
|
||||
Name: "database revision specs: branch-qualified revision spec",
|
||||
SetUpScript: []string{
|
||||
"create table t01 (pk int primary key, c1 int)",
|
||||
"call dolt_add('.')",
|
||||
@@ -4768,8 +4767,7 @@ var LargeJsonObjectScriptTests = []queries.ScriptTest{
|
||||
|
||||
var UnscopedDiffSystemTableScriptTests = []queries.ScriptTest{
|
||||
{
|
||||
SkipPrepared: true,
|
||||
Name: "working set changes",
|
||||
Name: "working set changes",
|
||||
SetUpScript: []string{
|
||||
"create table regularTable (a int primary key, b int, c int);",
|
||||
"create table droppedTable (a int primary key, b int, c int);",
|
||||
|
||||
Reference in New Issue
Block a user