Skip to content

Commit

Permalink
normalize column names for Redshift (apache#5337)
Browse files Browse the repository at this point in the history
  • Loading branch information
minh5 authored and mistercrunch committed Jul 4, 2018
1 parent 4f9a977 commit e8fb294
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions superset/db_engine_specs.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,10 @@ class VerticaEngineSpec(PostgresBaseEngineSpec):
class RedshiftEngineSpec(PostgresBaseEngineSpec):
engine = 'redshift'

@staticmethod
def normalize_column_name(column_name):
return column_name.lower()


class OracleEngineSpec(PostgresBaseEngineSpec):
engine = 'oracle'
Expand Down

0 comments on commit e8fb294

Please sign in to comment.