-
Notifications
You must be signed in to change notification settings - Fork 262
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug Fix for SELECT with uppercase columns (Approach 1) #1420
base: staging
Are you sure you want to change the base?
Bug Fix for SELECT with uppercase columns (Approach 1) #1420
Conversation
Just a doubt: currently even though I have converted columns to always remain lower case, TupleValueExpression objects still still store column name in original case, would that be an issue? |
Also, all test cases passed locally, except these three: |
Problem Statement
Select query for tables with tables with upper case columns wasn't working: Issue 1079
Solution
Since the design principle of EvaDB is that the columns are to be treated as lower case, the solution consisted of the following steps:
Output after Bug Fix