Skip to content

Commit

Permalink
[SPARK-48576][SQL][FOLLOWUP] Rename UTF8_BINARY_LCASE to UTF8_LCASE
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?
Renaming `UTF8_BINARY_LCASE` collation to `UTF8_LCASE` in leftover tests.

### Why are the changes needed?
Due to a merge conflict, one additional test was using the old collation name.

### Does this PR introduce _any_ user-facing change?
No.

### How was this patch tested?
Existing tests.

### Was this patch authored or co-authored using generative AI tooling?
No.

Closes #46939 from uros-db/renaming-fix.

Authored-by: Uros Bojanic <157381213+uros-db@users.noreply.github.com>
Signed-off-by: Wenchen Fan <wenchen@databricks.com>
  • Loading branch information
uros-db authored and cloud-fan committed Jun 11, 2024
1 parent aad6771 commit 6107836
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ class CollationStringExpressionsSuite
)
val testCases = Seq(
LevenshteinTestCase("kitten", "sitTing", "UTF8_BINARY", None, result = 4),
LevenshteinTestCase("kitten", "sitTing", "UTF8_BINARY_LCASE", None, result = 4),
LevenshteinTestCase("kitten", "sitTing", "UTF8_LCASE", None, result = 4),
LevenshteinTestCase("kitten", "sitTing", "UNICODE", Some(3), result = -1),
LevenshteinTestCase("kitten", "sitTing", "UNICODE_CI", Some(3), result = -1)
)
Expand Down

0 comments on commit 6107836

Please sign in to comment.