[jira] [Comment Edited] (CASSANDRA-9543) Integrate release 2.2 java driver

2015-11-02 Thread Jeremiah Jordan (JIRA)

[ 
https://issues.apache.org/jira/browse/CASSANDRA-9543?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14985462#comment-14985462
 ] 

Jeremiah Jordan edited comment on CASSANDRA-9543 at 11/2/15 4:40 PM:
-

[~snazy] force pushed to the same branch with a change to update to the 
3.0.0-alpha4 that is in cassandra-3.0.

After talking with the driver guys, they are going to discontinue the 2.2 
branch because the 3.0 branch is exactly the same, except it can also handle 
the new schema stuff.

http://cassci.datastax.com/view/Dev/view/zanson/job/JeremiahDJordan-updatejavadriver-dtest/
http://cassci.datastax.com/view/Dev/view/zanson/job/JeremiahDJordan-updatejavadriver-testall/


was (Author: jjordan):
[~snazy] force pushed to the same branch with a change to update to the 
3.0.0-alpha4 that is in cassandra-3.0.

After talking with the driver guys, they are going to discontinue the 2.2 
branch because the 3.0 branch is exactly the same, except it can also handle 
the new schema stuff.

> Integrate release 2.2 java driver
> -
>
> Key: CASSANDRA-9543
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9543
> Project: Cassandra
>  Issue Type: Task
>Reporter: Robert Stupp
>Assignee: Jeremiah Jordan
> Fix For: 2.2.x
>
>
> Follow-up of CASSANDRA-9493.
> Hint: cleanup {{build.xml}} for commented out {{çassandra-driver-core}} maven 
> dependencies.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Comment Edited] (CASSANDRA-9543) Integrate release 2.2 java driver

2015-10-30 Thread Jeremiah Jordan (JIRA)

[ 
https://issues.apache.org/jira/browse/CASSANDRA-9543?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14983746#comment-14983746
 ] 

Jeremiah Jordan edited comment on CASSANDRA-9543 at 10/31/15 2:28 AM:
--

[~snazy] I finished my updated branch here: 
https://github.com/JeremiahDJordan/cassandra/tree/updatejavadriver

I also back ported the new test from CASSANDRA-10367, with a small modification 
because the 2.2 java driver returns an [UnmodifiableCollection from 
deserialize|https://github.com/datastax/java-driver/blob/2.2/driver-core/src/main/java/com/datastax/driver/core/TypeCodec.java#L1610-1610]
 so you have to make a copy of the input list to add a new item to it.

(This is because https://datastax-oss.atlassian.net/browse/JAVA-922 only went 
in to the 3.0 driver and not the 2.2 driver)

{noformat}
AS 'java.util.ArrayList t = new java.util.ArrayList(s); if (i != null) 
t.add(String.valueOf(i)); return t;'
{noformat}

Tests should show up here once cassci gets to running them:
http://cassci.datastax.com/view/Dev/view/zanson/

Like yours this is all back ports of stuff already in 3.0 and trunk, so only a 
2.2 branch is provided.


was (Author: jjordan):
[~snazy] I finished my updated branch here: 
https://github.com/JeremiahDJordan/cassandra/tree/updatejavadriver

I also back ported the new test from CASSANDRA-10367, with a small modification 
because the 2.2 java driver returns an [UnmodifiableCollection from 
deserialize|https://github.com/datastax/java-driver/blob/2.2/driver-core/src/main/java/com/datastax/driver/core/TypeCodec.java#L1610-1610]
 so you have to make a copy of the input list to add a new item to it.

{noformat}
AS 'java.util.ArrayList t = new java.util.ArrayList(s); if (i != null) 
t.add(String.valueOf(i)); return t;'
{noformat}

Tests should show up here once cassci gets to running them:
http://cassci.datastax.com/view/Dev/view/zanson/

Like yours this is all back ports of stuff already in 3.0 and trunk, so only a 
2.2 branch is provided.

> Integrate release 2.2 java driver
> -
>
> Key: CASSANDRA-9543
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9543
> Project: Cassandra
>  Issue Type: Task
>Reporter: Robert Stupp
>Assignee: Jeremiah Jordan
> Fix For: 2.2.x
>
>
> Follow-up of CASSANDRA-9493.
> Hint: cleanup {{build.xml}} for commented out {{çassandra-driver-core}} maven 
> dependencies.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Comment Edited] (CASSANDRA-9543) Integrate release 2.2 java driver

2015-10-30 Thread Jeremiah Jordan (JIRA)

[ 
https://issues.apache.org/jira/browse/CASSANDRA-9543?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14983746#comment-14983746
 ] 

Jeremiah Jordan edited comment on CASSANDRA-9543 at 10/31/15 2:12 AM:
--

[~snazy] I finished my updated branch here: 
https://github.com/JeremiahDJordan/cassandra/tree/updatejavadriver

I also back ported the new test from CASSANDRA-10367, with a small modification 
because the 2.2 java driver returns an [UnmodifiableCollection from 
deserialize|https://github.com/datastax/java-driver/blob/2.2/driver-core/src/main/java/com/datastax/driver/core/TypeCodec.java#L1610-1610]
 so you have to make a copy of the input list to add a new item to it.

{noformat}
AS 'java.util.ArrayList t = new java.util.ArrayList(s); if (i != null) 
t.add(String.valueOf(i)); return t;'
{noformat}

Tests should show up here once cassci gets to running them:
http://cassci.datastax.com/view/Dev/view/zanson/

Like yours this is all back ports of stuff already in 3.0 and trunk, so only a 
2.2 branch is provided.


was (Author: jjordan):
[~snazy] I finished my updated branch here: 
https://github.com/JeremiahDJordan/cassandra/tree/updatejavadriver

I also back ported the new test from CASSANDRA-10367, with a small modification 
because the 2.2 java driver returns an [UnmodifiableCollection from 
deserialize|https://github.com/datastax/java-driver/blob/2.2/driver-core/src/main/java/com/datastax/driver/core/TypeCodec.java#L1610-1610]
 so you have to make a copy of the input list to add a new item to it.

{noformat}
AS 'java.util.ArrayList t = new java.util.ArrayList(s); if (i != null) 
t.add(String.valueOf(i)); return t;'
{noformat}


> Integrate release 2.2 java driver
> -
>
> Key: CASSANDRA-9543
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9543
> Project: Cassandra
>  Issue Type: Task
>Reporter: Robert Stupp
>Assignee: Robert Stupp
> Fix For: 2.2.x
>
>
> Follow-up of CASSANDRA-9493.
> Hint: cleanup {{build.xml}} for commented out {{çassandra-driver-core}} maven 
> dependencies.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Comment Edited] (CASSANDRA-9543) Integrate release 2.2 java driver

2015-08-15 Thread Robert Stupp (JIRA)

[ 
https://issues.apache.org/jira/browse/CASSANDRA-9543?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14698200#comment-14698200
 ] 

Robert Stupp edited comment on CASSANDRA-9543 at 8/15/15 9:37 AM:
--

Note: changes for 3.0 and trunk are different (and handled in CASSANDRA-6717) - 
so there are no branches and tests for 3.0 + trunk.


was (Author: snazy):
Note: changes for 3.0 and trunk are different (and handled in CASSANDRA-6717).

> Integrate release 2.2 java driver
> -
>
> Key: CASSANDRA-9543
> URL: https://issues.apache.org/jira/browse/CASSANDRA-9543
> Project: Cassandra
>  Issue Type: Task
>Reporter: Robert Stupp
>Assignee: Robert Stupp
> Fix For: 2.2.x
>
>
> Follow-up of CASSANDRA-9493.
> Hint: cleanup {{build.xml}} for commented out {{çassandra-driver-core}} maven 
> dependencies.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)