-
Beta Was this translation helpful? Give feedback.
Answered by
lovasoa
Aug 13, 2024
Replies: 2 comments 7 replies
-
This sounds like a bug in SQLPage. I'll investigate. in the meantime, can you try to cast the rank to text before returning it to SQLPage? |
Beta Was this translation helpful? Give feedback.
0 replies
-
@ttoorree : I confirm this is a bug with how SQLPage handles MySQL values of type The bug will be fixed in the next version. In the meantime, you can use SELECT
CAST(Rank() OVER (order by result.elapsed_time asc) AS CHAR) as 'Rank',
... |
Beta Was this translation helpful? Give feedback.
7 replies
Answer selected by
ttoorree
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ttoorree : I confirm this is a bug with how SQLPage handles MySQL values of type
BIGINT SIGNED
, such as the result of the rank function.The bug will be fixed in the next version.
In the meantime, you can use