Github user zentol commented on a diff in the pull request:
https://github.com/apache/flink/pull/5964#discussion_r186674717
--- Diff:
flink-connectors/flink-connector-cassandra/src/test/java/org/apache/flink/streaming/connectors/cassandra/CassandraConnectorITCase.java
---
@@ -429,6 +429,26 @@ public void testCassandraPojoAtLeastOnceSink() throws
Exception {
Assert.assertEquals(20, rs.all().size());
}
+ @Test
+ public void testCassandraPojoNoAnnotatedKeyspaceAtLeastOnceSink()
throws Exception {
--- End diff --
I don't understand how this test can succeed. We never set the keyspace
anywhere, and the POJO's don't contain it either.
---