We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
./jq-linux64 --version jq-1.5
./jq-linux64 -c '([.bignumber]) | @csv' inputfile.txt > outputfile.csv
inputfile.txt {"bignumber":11012340123456789}{"bignumber":10456781234567891}
output: 11012340123456788 10456781234567892
Summary: the last digit in the large value of long is changed. conversion is not accurate.
The text was updated successfully, but these errors were encountered:
This is already fixed in the master version (implemented by #1752 in Oct, 2019).
Sorry, something went wrong.
No branches or pull requests
./jq-linux64 --version
jq-1.5
./jq-linux64 -c '([.bignumber]) | @csv' inputfile.txt > outputfile.csv
inputfile.txt
{"bignumber":11012340123456789}{"bignumber":10456781234567891}
output:
11012340123456788
10456781234567892
Summary:
the last digit in the large value of long is changed. conversion is not accurate.
The text was updated successfully, but these errors were encountered: