Hi,
while evaluating N1QL I stumbled upon the following behaviour.
SELECT TO_STR(1234567) evaluates to “1.234567e+06” instead ot the expected “1234567”.
I am trying to build a string to use as a document ID like so:
SELECT “X” || TO_STR(1234567)
It evaluates to “X1.234567e+06” instead of the expected “X1234567”.
Is there a work-around?
Best regards
Timo Griese