Skip to content

Commit a6eb6cf

Browse files
remove todo comments
1 parent c9656c1 commit a6eb6cf

File tree

1 file changed

+0
-3
lines changed
  • kernel/src/table_changes/log_replay

1 file changed

+0
-3
lines changed

kernel/src/table_changes/log_replay/tests.rs

-3
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,6 @@ async fn incompatible_schemas_fail() {
259259
]);
260260
assert_schema_check(schema, get_schema(), false).await;
261261

262-
// Note: Once schema evolution is supported, this should not return an error.
263-
//
264262
// The CDF schema has fields: nullable `id` and nullable `value`.
265263
// This commit has schema with fields: non-nullable `id` and nullable `value`.
266264
let schema = StructType::new([
@@ -269,7 +267,6 @@ async fn incompatible_schemas_fail() {
269267
]);
270268
assert_schema_check(schema, get_schema(), true).await;
271269

272-
// Note: Once schema evolution is supported, this should not return an error.
273270
// The CDF schema has fields: `id` (nullable) and `value` (nullable).
274271
// This commit has schema with fields: `id` (nullable).
275272
let schema = get_schema().project_as_struct(&["id"]).unwrap();

0 commit comments

Comments
 (0)