Skip to content

Commit

Permalink
[ga-format-pr] Run ./format_repo.sh to fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jycor committed Sep 4, 2024
1 parent 347a952 commit 39cf0a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions enginetest/queries/script_queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -7262,7 +7262,7 @@ where
"create table t (t1 text collate utf8mb4_0900_bin, t2 text collate utf8mb4_0900_ai_ci)",
"insert into t values ('ABC', 'DEF')",
},
Assertions: []ScriptTestAssertion{
Assertions: []ScriptTestAssertion{
{
Query: "select * from t where (t1, t2) in (('ABC', 'DEF'));",
Expected: []sql.Row{
Expand All @@ -7276,10 +7276,10 @@ where
},
},
{
Query: "select * from t where (t1, t2) in (('abc', 'DEF'));",
Query: "select * from t where (t1, t2) in (('abc', 'DEF'));",
Expected: []sql.Row{},
},
},
},
},
}

Expand Down
4 changes: 2 additions & 2 deletions sql/expression/in_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -417,8 +417,8 @@ func TestHashInTuple(t *testing.T) {
{
"heterogeneous collations with nested",
expression.NewTuple(
expression.NewLiteral("ABC", types.MustCreateString(sqltypes.VarChar, 20, sql.Collation_Default)),
expression.NewLiteral("def", types.MustCreateString(sqltypes.VarChar, 20, sql.Collation_utf8mb4_0900_ai_ci)),
expression.NewLiteral("ABC", types.MustCreateString(sqltypes.VarChar, 20, sql.Collation_Default)),
expression.NewLiteral("def", types.MustCreateString(sqltypes.VarChar, 20, sql.Collation_utf8mb4_0900_ai_ci)),
),
expression.NewTuple(
expression.NewTuple(
Expand Down

0 comments on commit 39cf0a8

Please sign in to comment.