stevenzwu commented on a change in pull request #3240:
URL: https://github.com/apache/iceberg/pull/3240#discussion_r735062137
##########
File path: flink/src/test/java/org/apache/iceberg/flink/TestChangeLogTable.java
##########
@@ -273,16 +274,24 @@ private void testSqlChangeLog(String tableName,
Table table = createTable(tableName, key, partitioned);
sql("INSERT INTO %s SELECT * FROM %s", tableName, SOURCE_TABLE);
+ sql("SELECT * FROM %s", tableName);
+
table.refresh();
List<Snapshot> snapshots = findValidSnapshots(table);
int expectedSnapshotNum = expectedRecordsPerCheckpoint.size();
Assert.assertEquals("Should have the expected snapshot number",
expectedSnapshotNum, snapshots.size());
for (int i = 0; i < expectedSnapshotNum; i++) {
long snapshotId = snapshots.get(i).snapshotId();
- List<Record> expectedRecords = expectedRecordsPerCheckpoint.get(i);
+ List<Row> expectedRowss = expectedRecordsPerCheckpoint.get(i);
Review comment:
typo: double `s` chars
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]