Skip to content

Commit

Permalink
test: fix test mistake
Browse files Browse the repository at this point in the history
Signed-off-by: Andres Taylor <andres@planetscale.com>
  • Loading branch information
systay committed Oct 16, 2024
1 parent 1a8c095 commit 4e066e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ from (select id, count(*) as num_segments from t1 group by 1 order by 2 desc lim
join t2 u on u.id = t.id;

select name
from (select name from t1 group by name having count(t1.id > 1)) t1;
from (select name from t1 group by name having count(t1.id) > 1) t1;
2 changes: 1 addition & 1 deletion go/vt/vtgate/planbuilder/plan_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ func (s *planTestSuite) TestViews() {
s.testFile("view_cases.json", vschemaWrapper, false)
}

func (s *planTestSuite) /**/ TestOne() {
func (s *planTestSuite) TestOne() {
reset := operators.EnableDebugPrinting()
defer reset()

Expand Down

0 comments on commit 4e066e8

Please sign in to comment.