PR solves problem described in 
https://github.com/apache/incubator-superset/issues/6009

There are 4 tables that are affected by this:

```sql
SELECT  c.table_name, count(1)
  FROM information_schema.columns As c
  WHERE c.table_schema NOT IN('information_schema', 'pg_catalog') 
      AND c.column_name <> lower(c.column_name) and lower(c.column_name) <> 
c.column_name
  group by c.table_schema, c.table_name
  ORDER BY 2 desc;
 ```
```
wb_health_population    324
flights                 40
long_lat                10
birth_france_by_region  1
```

I'd be happy to create tests for this as soon as I get more familiar with the 
project.

[ Full content available at: 
https://github.com/apache/incubator-superset/pull/6018 ]
This message was relayed via gitbox.apache.org for [email protected]

Reply via email to