[
https://issues.apache.org/jira/browse/CASSANDRA-16686?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17357272#comment-17357272
]
Andres de la Peña commented on CASSANDRA-16686:
-----------------------------------------------
Here are some multiplexer runs for the modified tests (still running):
|| Test || j8-j8 || j8-j11 || j11-j11 ||
| ColumnFilterTest |
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/541/workflows/4305b64a-a373-4529-a8ef-4e15e8efb1a8/jobs/4914]
|
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/541/workflows/4305b64a-a373-4529-a8ef-4e15e8efb1a8/jobs/4917]
|
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/541/workflows/4d42f088-d8e6-49fa-8187-9718fe66566d/jobs/4911]
|
| DeleteTest |
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/545/workflows/245e1ff1-fed0-4167-80fc-c9ea779bd813/jobs/4964]
|
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/545/workflows/245e1ff1-fed0-4167-80fc-c9ea779bd813/jobs/4961]
|
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/545/workflows/c0bc2011-2bf5-4d6f-a56e-c4b2b420c3d7/jobs/4957]
|
| CompactTableTest |
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/542/workflows/43645359-d5a0-478c-9c97-e651c652afdc/jobs/4947]
|
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/542/workflows/43645359-d5a0-478c-9c97-e651c652afdc/jobs/4948]
|
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/542/workflows/81d327f6-b10c-4beb-ab95-b701523f4fbc/jobs/4949]
|
| SSTableAndMemTableDigestMatchTest |
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/543/workflows/4ce325de-e996-4200-bddf-be7142d3df81/jobs/4950]
|
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/543/workflows/4ce325de-e996-4200-bddf-be7142d3df81/jobs/4951]
|
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/543/workflows/0288fa96-cc38-452c-b7f6-19dc211fa9b4/jobs/4952]
|
| InsertUpdateIfConditionStaticsTest |
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/544/workflows/d100ab2f-6b00-42c6-a755-ab58f42d1c63/jobs/4953]
|
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/544/workflows/d100ab2f-6b00-42c6-a755-ab58f42d1c63/jobs/4954]
|
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/544/workflows/cdd6a17f-79e5-40aa-bf04-1258ceecdefb/jobs/4955]
|
| MixedModeReadTest |
[link|https://app.circleci.com/pipelines/github/adelapena/cassandra/541/workflows/4305b64a-a373-4529-a8ef-4e15e8efb1a8/jobs/4922]
| -- | -- |
> Queries returning static content when the partition has no rows might fail to
> return some rows
> ----------------------------------------------------------------------------------------------
>
> Key: CASSANDRA-16686
> URL: https://issues.apache.org/jira/browse/CASSANDRA-16686
> Project: Cassandra
> Issue Type: Bug
> Components: CQL/Interpreter
> Reporter: Benjamin Lerer
> Assignee: Benjamin Lerer
> Priority: Normal
> Fix For: 4.0-rc
>
> Time Spent: 3h 40m
> Remaining Estimate: 0h
>
> The problem can be reproduced with the following test:
> {code}
> @Test
> public void testStaticColumnDeletionWithMultipleStaticColumns() throws
> Throwable
> {
> createTable("CREATE TABLE %s (pk int, ck int, s1 int static, s2 int
> static, v int, PRIMARY KEY(pk, ck))");
> execute("INSERT INTO %s (pk, s1, s2) VALUES (1, 1, 1) USING TIMESTAMP
> 1000");
> flush();
> execute("INSERT INTO %s (pk, s1) VALUES (1, 2) USING TIMESTAMP 2000");
> flush();
> execute("DELETE s1 FROM %s USING TIMESTAMP 3000 WHERE pk = 1");
> flush();
> assertRows(execute("SELECT * FROM %s WHERE pk=1"), row(1, null, null,
> 1, null));
> assertRows(execute("SELECT s1, s2 FROM %s WHERE pk=1"), row((Integer)
> null, 1));
> assertRows(execute("SELECT s1 FROM %s WHERE pk=1"), row((Integer)
> null)); // <-FAIL
> }
> {code}
> This problem is a regression in 4.0 and trunk
--
This message was sent by Atlassian Jira
(v8.3.4#803005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]