File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,10 +18,11 @@ import (
1818 "github.com/cockroachdb/errors"
1919 doltservercfg "github.com/dolthub/dolt/go/libraries/doltcore/servercfg"
2020 "github.com/dolthub/dolt/go/libraries/utils/filesys"
21- "github.com/dolthub/doltgresql/server/analyzer"
2221 "github.com/dolthub/go-mysql-server/sql"
2322 "gopkg.in/yaml.v2"
2423
24+ "github.com/dolthub/doltgresql/server/analyzer"
25+
2526 pgsql "github.com/dolthub/doltgresql/postgres/parser/parser/sql"
2627 "github.com/dolthub/doltgresql/server/expression"
2728 "github.com/dolthub/doltgresql/servercfg/cfgdetails"
Original file line number Diff line number Diff line change @@ -483,8 +483,8 @@ func TestBasicIndexing(t *testing.T) {
483483 Assertions : []ScriptTestAssertion {
484484 {
485485 Query : "select /*+ lookup_join(sq, test) */ HINT * from test join " +
486- "(select * from jointable) sq " +
487- "on test.v1 = sq.v3 and test.v2 = sq.v4 order by 1" ,
486+ "(select * from jointable) sq " +
487+ "on test.v1 = sq.v3 and test.v2 = sq.v4 order by 1" ,
488488 Expected : []sql.Row {
489489 {11 , 1 , 21 , 1 , 21 },
490490 },
You can’t perform that action at this time.
0 commit comments