[
https://issues.apache.org/jira/browse/CASSANDRA-10928?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15351337#comment-15351337
]
Jonathan Ellis commented on CASSANDRA-10928:
--------------------------------------------
I hit the same error running this test locally. I pulled in the slightly more
elegant fix from 2.2 and committed.
{code}
assertEquals("unexpected serialization format for topLevelDeletion",
JSONValue.parse("{\"markedForDeleteAt\":0,\"localDeletionTime\":0}"),
serializedDeletionInfo);
{code}
> SSTableExportTest.testExportColumnsWithMetadata randomly fails
> --------------------------------------------------------------
>
> Key: CASSANDRA-10928
> URL: https://issues.apache.org/jira/browse/CASSANDRA-10928
> Project: Cassandra
> Issue Type: Bug
> Components: Testing
> Reporter: Michael Kjellman
> Assignee: sankalp kohli
> Fix For: 2.1.x
>
> Attachments: CASSANDRA_10928_2.1.diff
>
>
> The SSTableExportTest.testExportColumnsWithMetadata test will randomly fail
> (bogusly). Currently, the string check used won’t work if the JSON generated
> happened to order the elements in the array differently.
> {code}
> assertEquals(
> "unexpected serialization format for topLevelDeletion",
> "{\"markedForDeleteAt\":0,\"localDeletionTime\":0}",
> serializedDeletionInfo.toJSONString());
> {code}
> {noformat}
> [junit] Testcase:
> testExportColumnsWithMetadata(org.apache.cassandra.tools.SSTableExportTest):
> FAILED
> [junit] unexpected serialization format for topLevelDeletion
> expected:<{"[markedForDeleteAt":0,"localDeletionTime]":0}> but
> was:<{"[localDeletionTime":0,"markedForDeleteAt]":0}>
> [junit] junit.framework.AssertionFailedError: unexpected serialization
> format for topLevelDeletion
> expected:<{"[markedForDeleteAt":0,"localDeletionTime]":0}> but
> was:<{"[localDeletionTime":0,"markedForDeleteAt]":0}>
> [junit] at
> org.apache.cassandra.tools.SSTableExportTest.testExportColumnsWithMetadata(SSTableExportTest.java:299)
> [junit]
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)