Closed hugocar closed 8 years ago
Using the last wagon version and MySQL 5.5
My query return columns build like this :
sum(case when log.source=4 then 1 else 0 end) as web, sum(case when log.source=2 then 1 else 0 end) as web_mobile
Theses columns have obviously the integer type.
But as you can see below, Wagon cast this integers as string. This prevent using the graphical features of Wagon
Additional information : the same queries were working just fine yesterday. This issue might be related to the latest update.
Fixed
Using the last wagon version and MySQL 5.5
My query return columns build like this :
sum(case when log.source=4 then 1 else 0 end) as web, sum(case when log.source=2 then 1 else 0 end) as web_mobile
Theses columns have obviously the integer type.
But as you can see below, Wagon cast this integers as string. This prevent using the graphical features of Wagon