The drop_column function fails for a column name with any upper case letters. This PR quotes the column name in the query so that it will work with column names including upper case letters.
This fix is high priority for the CRP project.
In the process of adding a test for dropping a column with upper-case letters, I discovered another test failure with upper-case columns. This led me to also fix the Values clause for upper-case column names.
The
drop_column
function fails for a column name with any upper case letters. This PR quotes the column name in the query so that it will work with column names including upper case letters.This fix is high priority for the CRP project.
In the process of adding a test for dropping a column with upper-case letters, I discovered another test failure with upper-case columns. This led me to also fix the
Values
clause for upper-case column names.