Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

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 timifasubaa committed Jul 25, 2018
1 parent 004f6d9 commit eff01bd
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 eff01bd

Please sign in to comment.