From 8616a7af93a643267f60abbe61491870e0661464 Mon Sep 17 00:00:00 2001 From: Andres Taylor Date: Tue, 27 Feb 2024 09:57:37 +0100 Subject: [PATCH] remove outdated test Signed-off-by: Andres Taylor --- .../vttablet/tabletserver/vstreamer/planbuilder_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/go/vt/vttablet/tabletserver/vstreamer/planbuilder_test.go b/go/vt/vttablet/tabletserver/vstreamer/planbuilder_test.go index 19fa5ee06a2..e9721daa693 100644 --- a/go/vt/vttablet/tabletserver/vstreamer/planbuilder_test.go +++ b/go/vt/vttablet/tabletserver/vstreamer/planbuilder_test.go @@ -591,10 +591,6 @@ func TestPlanBuilder(t *testing.T) { inTable: t1, inRule: &binlogdatapb.Rule{Match: "t1", Filter: "select id, val from t1 where in_keyrange(id)"}, outErr: `unsupported: id`, - }, { - inTable: t1, - inRule: &binlogdatapb.Rule{Match: "t1", Filter: "select id, val from t1 where in_keyrange(*, 'hash', '-80')"}, - outErr: `[BUG] unexpected: *sqlparser.StarExpr *`, }, { inTable: t1, inRule: &binlogdatapb.Rule{Match: "t1", Filter: "select id, val from t1 where in_keyrange(1, 'hash', '-80')"}, @@ -632,11 +628,6 @@ func TestPlanBuilder(t *testing.T) { inTable: t1, inRule: &binlogdatapb.Rule{Match: "t1", Filter: "select t1.id, val from t1"}, outErr: `unsupported qualifier for column: t1.id`, - }, { - // selString - inTable: t1, - inRule: &binlogdatapb.Rule{Match: "t1", Filter: "select id, val from t1 where in_keyrange(id, *, '-80')"}, - outErr: `unsupported: *`, }, { inTable: t1, inRule: &binlogdatapb.Rule{Match: "t1", Filter: "select id, val from t1 where in_keyrange(id, 1+1, '-80')"},