Skip to content

Commit fd78475

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent c0b49b2 commit fd78475

File tree

1 file changed

+21
-22
lines changed

1 file changed

+21
-22
lines changed

enginetest/queries/script_queries.go

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
package queries
1616

1717
import (
18-
"github.com/dolthub/vitess/go/mysql"
1918
"math"
2019
"time"
2120

@@ -140,51 +139,51 @@ var ScriptTests = []ScriptTest{
140139
//ExpectedWarningMessageSubstring: "Truncated incorrect double value: A",
141140
},
142141
{
143-
Query: "SELECT ('A') != (0)",
144-
Expected: []sql.Row{{false}},
145-
ExpectedWarningsCount: 1,
142+
Query: "SELECT ('A') != (0)",
143+
Expected: []sql.Row{{false}},
144+
ExpectedWarningsCount: 1,
146145
//ExpectedWarning: mysql.ERTruncatedWrongValue,
147146
//ExpectedWarningMessageSubstring: "Truncated incorrect double value: A",
148147
},
149148
{
150-
Query: "SELECT ('A') <> (0)",
151-
Expected: []sql.Row{{false}},
152-
ExpectedWarningsCount: 1,
149+
Query: "SELECT ('A') <> (0)",
150+
Expected: []sql.Row{{false}},
151+
ExpectedWarningsCount: 1,
153152
//ExpectedWarning: mysql.ERTruncatedWrongValue,
154153
//ExpectedWarningMessageSubstring: "Truncated incorrect double value: A",
155154
},
156155
{
157-
Query: "SELECT ('A') < (0)",
158-
Expected: []sql.Row{{false}},
159-
ExpectedWarningsCount: 1,
156+
Query: "SELECT ('A') < (0)",
157+
Expected: []sql.Row{{false}},
158+
ExpectedWarningsCount: 1,
160159
//ExpectedWarning: mysql.ERTruncatedWrongValue,
161160
//ExpectedWarningMessageSubstring: "Truncated incorrect double value: A",
162161
},
163162
{
164-
Query: "SELECT ('A') <= (0)",
165-
Expected: []sql.Row{{true}},
166-
ExpectedWarningsCount: 1,
163+
Query: "SELECT ('A') <= (0)",
164+
Expected: []sql.Row{{true}},
165+
ExpectedWarningsCount: 1,
167166
//ExpectedWarning: mysql.ERTruncatedWrongValue,
168167
//ExpectedWarningMessageSubstring: "Truncated incorrect double value: A",
169168
},
170169
{
171-
Query: "SELECT ('A') > (0)",
172-
Expected: []sql.Row{{false}},
173-
ExpectedWarningsCount: 1,
170+
Query: "SELECT ('A') > (0)",
171+
Expected: []sql.Row{{false}},
172+
ExpectedWarningsCount: 1,
174173
//ExpectedWarning: mysql.ERTruncatedWrongValue,
175174
//ExpectedWarningMessageSubstring: "Truncated incorrect double value: A",
176175
},
177176
{
178-
Query: "SELECT ('A') >= (0)",
179-
Expected: []sql.Row{{true}},
180-
ExpectedWarningsCount: 1,
177+
Query: "SELECT ('A') >= (0)",
178+
Expected: []sql.Row{{true}},
179+
ExpectedWarningsCount: 1,
181180
//ExpectedWarning: mysql.ERTruncatedWrongValue,
182181
//ExpectedWarningMessageSubstring: "Truncated incorrect double value: A",
183182
},
184183
{
185-
Query: "SELECT ('A') NOT IN (0)",
186-
Expected: []sql.Row{{false}},
187-
ExpectedWarningsCount: 1,
184+
Query: "SELECT ('A') NOT IN (0)",
185+
Expected: []sql.Row{{false}},
186+
ExpectedWarningsCount: 1,
188187
//ExpectedWarning: mysql.ERTruncatedWrongValue,
189188
//ExpectedWarningMessageSubstring: "Truncated incorrect double value: A",
190189
},

0 commit comments

Comments
 (0)