Adam Holmberg created CASSANDRA-10523:
-----------------------------------------
Summary: Distinguish Infinity and -Infinity in cqlsh result
formatting
Key: CASSANDRA-10523
URL: https://issues.apache.org/jira/browse/CASSANDRA-10523
Project: Cassandra
Issue Type: Bug
Reporter: Adam Holmberg
Priority: Minor
Fix For: 3.0.0 rc2
Attachments: format-inf.txt
Before:
{code}
cqlsh> select * from test.fd where f in (Infinity, -Infinity);
f | d
-----------+-----------
Infinity | Infinity
Infinity | Infinity
{code}
After:
{code}
cqlsh> select * from test.fd where f in (Infinity, -Infinity);
f | d
-----------+-----------
-Infinity | -Infinity
Infinity | Infinity
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)