Scott Sadler created CASSANDRA-4291:
---------------------------------------

             Summary: Oversize integer in CQL throws NumberFormatException
                 Key: CASSANDRA-4291
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-4291
             Project: Cassandra
          Issue Type: Bug
          Components: API
            Reporter: Scott Sadler
            Priority: Minor


In CQL, the parser does not handle an oversize Integer, the client socket get 
closed and an exception is output in the log.

{noformat}cqlsh:TEST1> select count(*) from Items limit 10000000000000;
TSocket read 0 bytes
cqlsh:TEST1> select count(*) from Items limit 1;
TSocket read 0 bytes{noformat}

{noformat}
ERROR 02:51:28,600 Error occurred during processing of message.
java.lang.NumberFormatException: For input string: "10000000000"
        at 
java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
        at java.lang.Integer.parseInt(Integer.java:461)
        at java.lang.Integer.parseInt(Integer.java:499)
        at 
org.apache.cassandra.cql.CqlParser.selectStatement(CqlParser.java:631)
        at org.apache.cassandra.cql.CqlParser.query(CqlParser.java:221)
        at 
org.apache.cassandra.cql.QueryProcessor.getStatement(QueryProcessor.java:951)
        at 
org.apache.cassandra.cql.QueryProcessor.process(QueryProcessor.java:873)
        at 
org.apache.cassandra.thrift.CassandraServer.execute_cql_query(CassandraServer.java:1234)
        at 
org.apache.cassandra.thrift.Cassandra$Processor$execute_cql_query.getResult(Cassandra.java:3542)
        at 
org.apache.cassandra.thrift.Cassandra$Processor$execute_cql_query.getResult(Cassandra.java:3530)
        at org.apache.thrift.ProcessFunction.process(ProcessFunction.java:32)
        at org.apache.thrift.TBaseProcessor.process(TBaseProcessor.java:34)
        at 
org.apache.cassandra.thrift.CustomTThreadPoolServer$WorkerProcess.run(CustomTThreadPoolServer.java:184)
        at 
java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
        at 
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
        at java.lang.Thread.run(Thread.java:662)
{noformat}

The INTEGER type in Cql.g matches digits but not to any particular limit.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to