wagonhq / feedback

A place to discuss Wagon features and fixes, join us on Slack at
http://band.wagonhq.com
6 stars 0 forks source link

Integer being casted as String #56

Closed hugocar closed 8 years ago

hugocar commented 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

capture d ecran 2016-07-13 a 11 12 11
hugocar commented 8 years ago

Additional information : the same queries were working just fine yesterday. This issue might be related to the latest update.

hugocar commented 8 years ago

Fixed