You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by GitBox <gi...@apache.org> on 2020/04/03 11:42:22 UTC

[GitHub] [incubator-superset] flover97 commented on issue #9433: mysql error: FUNCTION asterisk.SUM does not exist.

flover97 commented on issue #9433: mysql error: FUNCTION asterisk.SUM does not exist.
URL: https://github.com/apache/incubator-superset/issues/9433#issuecomment-608387623
 
 
   My request works correctly, but when I try to create a chart, superset changes the request and it has a line break after SUM. Сan I fix this without changing the database configuration.
   Superset out query:
   
   ```
   SELECT `Date` AS `Date`,
          `Type` AS `Type`,
          `Call_duration` AS `Call_duration`,
          `Operator` AS `Operator`,
          `Number_of_calls` AS `Number_of_calls`
   FROM
     (SELECT DATE_FORMAT
        (start, '%Y-%m-%d') AS Date,
             disposition AS Type,
             DATE_FORMAT(SEC_TO_TIME(SUM
                                       (end-start)), '%H:%i:%S') AS Call_duration,
             case
                 when substring(dstchannel, 5, 4) = '1000' then 'Name1'
                 when substring(dstchannel, 5, 4) = '2000' then 'Name2'
                 when substring(dstchannel, 5, 4) = '3000' then 'Name3'
                 when substring(dstchannel, 5, 4) = '4000' then 'Name4'
                 when substring(dstchannel, 5, 3) = '100' then 'Other'
             end AS
      Operator,
             count(*) AS Number_of_calls
      FROM cdr
      WHERE dcontext = 'call-in'
        AND disposition = 'ANSWERED'
        AND end-
        start > 0
      group by DATE_FORMAT
        (start, '%Y-%m-%d'),
               4
      order by 1 desc) AS expr_qry
   LIMIT 1000;
   ```
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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