You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by "betodealmeida (via GitHub)" <gi...@apache.org> on 2023/02/06 20:16:43 UTC

[GitHub] [superset] betodealmeida commented on issue #21755: x-aixs alias name same as original field name

betodealmeida commented on issue #21755:
URL: https://github.com/apache/superset/issues/21755#issuecomment-1419691967

   The problem here is that this is invalid:
   
   ```sql
   select "DATE" as "data_column",
             "ITEM"
      from "table"
   ```
   
   It should be:
   
   ```sql
   select "DATE" as `data_column`,
             "ITEM"
      from "table"
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org