related: pandas read_sql drops dot in column names
I use pandas.read_sql to create a data frame from an sql query from a postgres database. some column aliases\names use mixed case, and I want it to propagate to the data frame. however, pandas (or the underlining engine - SQLAlchemy as much as I know) return only lower case field names.
is there a workaround? (besides using a lookup table and fix the values afterwards)