Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions go/vt/sqlparser/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1526,7 +1526,7 @@ func TestValid(t *testing.T) {
}

// Ensure there is no corruption from using a pooled yyParserImpl in Parse.
func TestValidParallel(t *testing.T) {
func TestParallelValid(t *testing.T) {
parallelism := 100
numIters := 1000

Expand Down Expand Up @@ -2616,10 +2616,10 @@ func TestSkipToEnd(t *testing.T) {
func TestParseDjangoQueries(t *testing.T) {

file, err := os.Open("./test_queries/django_queries.txt")
defer file.Close()
if err != nil {
t.Errorf(" Error: %v", err)
}
defer file.Close()
scanner := bufio.NewScanner(file)

for scanner.Scan() {
Expand Down