Skip to content

Commit

Permalink
fix matching logic in ddl
Browse files Browse the repository at this point in the history
  • Loading branch information
yliuuuu committed Jul 25, 2024
1 parent 332f83a commit 6ae51ef
Show file tree
Hide file tree
Showing 5 changed files with 355 additions and 305 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ internal object AstToPlan {
}

fun convert(binder: Binder): PlanIdentifier.Symbol = when (binder.isRegular) {
// This should be a dead branch
true -> identifierSymbol(binder.symbol, PlanIdentifier.CaseSensitivity.INSENSITIVE)
false -> identifierSymbol(binder.symbol, PlanIdentifier.CaseSensitivity.SENSITIVE)
}
Expand Down
Loading

0 comments on commit 6ae51ef

Please sign in to comment.