Stefania created CASSANDRA-13408:
------------------------------------

             Summary: Cqlsh COPY FROM fails to parse varints
                 Key: CASSANDRA-13408
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-13408
             Project: Cassandra
          Issue Type: Bug
          Components: Tools
            Reporter: Stefania
            Assignee: Stefania


CQLSH COPY FROM is failing to import varints:

{code}
cat test.csv 
id,varint
-2147483648,-9223372036854775808
2147483647,9223372036854775807

CREATE KEYSPACE ks WITH replication = {'class': 'SimpleStrategy', 
'replication_factor': 1};

CREATE TABLE test ( id int PRIMARY KEY , varint varint );

COPY test FROM 'test.csv' WITH HEADER = TRUE;

Failed to make batch statement: Received an argument of invalid type for column 
"varint". Expected: <class 'dse.cqltypes.IntegerType'>, Got: <type 'int'>; 
(descriptor 'bit_length' requires a 'int' o
bject but received a 'long')
{code}

Importing without prepared statements, {{WITH HEADER = TRUE AND 
PREPAREDSTATEMENTS = False}} works without problems.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to