[jira] [Updated] (CASSANDRA-7379) updating a row with compound key with a null value removes the entire row

2014-07-30 Thread Ryan McGuire (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-7379?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ryan McGuire updated CASSANDRA-7379:


Labels: qa-resolved  (was: )

 updating a row with compound key with a null value removes the entire row
 -

 Key: CASSANDRA-7379
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7379
 Project: Cassandra
  Issue Type: Bug
  Components: Core
Reporter: Ashot Golovenko
Assignee: Michael Shuler
Priority: Critical
  Labels: qa-resolved

 create a table
 CREATE TABLE relation (
 u1 bigint,
 u2 bigint,
 mf int,
 PRIMARY KEY (u1, u2));
 insert value:
 UPDATE relation SET mf = 1 WHERE u1 = 1 and u2 = 2;
 SELECT * from relation ;
  u1 | u2 | mf
 ++
   1 |  2 |  1
 insert null value:
 UPDATE relation SET mf = null WHERE u1 = 1 and u2 = 2;
 SELECT * from relation ;
 (0 rows) --- WRONG!
 The INSERT statement however works:
 INSERT INTO relation (u1, u2, mf) VALUES (1, 2, null); 
 SELECT * from relation ;
  u1 | u2 | mf
 ++--
   1 |  2 | null
 (1 rows)
  



--
This message was sent by Atlassian JIRA
(v6.2#6252)


[jira] [Updated] (CASSANDRA-7379) updating a row with compound key with a null value removes the entire row

2014-06-11 Thread Ashot Golovenko (JIRA)

 [ 
https://issues.apache.org/jira/browse/CASSANDRA-7379?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ashot Golovenko updated CASSANDRA-7379:
---

Reproduced In: 2.0.8, 2.0.7  (was: 2.0.7, 2.0.8)
  Summary: updating a row with compound key with a null value removes 
the entire row  (was: updating a row with composite key with a null value 
removes the entire row)

 updating a row with compound key with a null value removes the entire row
 -

 Key: CASSANDRA-7379
 URL: https://issues.apache.org/jira/browse/CASSANDRA-7379
 Project: Cassandra
  Issue Type: Bug
  Components: Core
Reporter: Ashot Golovenko
Assignee: Michael Shuler
Priority: Critical

 create a table
 CREATE TABLE relation (
 u1 bigint,
 u2 bigint,
 mf int,
 PRIMARY KEY (u1, u2));
 insert value:
 UPDATE relation SET mf = 1 WHERE u1 = 1 and u2 = 2;
 SELECT * from relation ;
  u1 | u2 | mf
 ++
   1 |  2 |  1
 insert null value:
 UPDATE relation SET mf = null WHERE u1 = 1 and u2 = 2;
 SELECT * from relation ;
 (0 rows) --- WRONG!
 The INSERT statement however works:
 INSERT INTO relation (u1, u2, mf) VALUES (1, 2, null); 
 SELECT * from relation ;
  u1 | u2 | mf
 ++--
   1 |  2 | null
 (1 rows)
  



--
This message was sent by Atlassian JIRA
(v6.2#6252)