In phoenix database and table names are case sensitive, but in the sql_achlemy code we do upper() which is causing the tables not to be listed out. Internal Jira: CDPD-61651
@@ -441,11 +441,6 @@ class SqlAlchemyApi(Api):
@query_error_handler
def autocomplete(self, snippet, database=None, table=None, column=None, nested=None, operation=None):
- if snippet['type'] == 'phoenix':
- if database:
- database = database.upper()
- if table:
- table = table.upper()
engine = self._get_engine()
inspector = inspect(engine)