Skip to content

Commit 5e5f585

Browse files
committed
tests: disable AlterProperlyUpdatesColumnCount
This test should not be enabled! See the description: * Verify that the column count of a bound statement's result metadata is * properly updated for newer protocol versions (v5 and greater) when a table's * schema is altered. This test will not work after next commit, thus it's being disabled. On the other hand, the test AlterDoesntUpdateColumnCount should be enabled. * Verify that the column count of a bound statement's result metadata doesn't * change for older protocol versions (v4 and less) when a table's schema is altered. It will be enabled later in this PR, once following issue is addressed: Currently, the `column_specs` and `col_data_types` may have different sizes for prepared statements. This is because, `col_data_types` is created based on prepared statement's cached metadata, and `column_specs` are taken from the QueryResult.
1 parent ba49984 commit 5e5f585

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ SCYLLA_TEST_FILTER := $(subst ${SPACE},${EMPTY},ClusterTests.*\
2727
:ExecutionProfileTest.InvalidName\
2828
:*NoCompactEnabledConnection\
2929
:PreparedMetadataTests.Integration_Cassandra_AlterDoesntUpdateColumnCount\
30+
:PreparedMetadataTests.Integration_Cassandra_AlterProperlyUpdatesColumnCount\
3031
:UseKeyspaceCaseSensitiveTests.Integration_Cassandra_ConnectWithKeyspace)
3132
endif
3233

@@ -57,6 +58,7 @@ CASSANDRA_TEST_FILTER := $(subst ${SPACE},${EMPTY},ClusterTests.*\
5758
:ExecutionProfileTest.InvalidName\
5859
:*NoCompactEnabledConnection\
5960
:PreparedMetadataTests.Integration_Cassandra_AlterDoesntUpdateColumnCount\
61+
:PreparedMetadataTests.Integration_Cassandra_AlterProperlyUpdatesColumnCount\
6062
:UseKeyspaceCaseSensitiveTests.Integration_Cassandra_ConnectWithKeyspace)
6163
endif
6264

0 commit comments

Comments
 (0)