Skip to content

Commit 2f349ab

Browse files
Nits
1 parent 1fd9274 commit 2f349ab

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

dev/provision.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -396,17 +396,12 @@
396396
spark.sql(f"ALTER TABLE {catalog_name}.default.test_empty_scan_ordered_str WRITE ORDERED BY id")
397397
spark.sql(f"INSERT INTO {catalog_name}.default.test_empty_scan_ordered_str VALUES 'a', 'c'")
398398

399-
# Fixture for IncrementalAppendScan. Partitioning by `letter` makes the file layout
400-
# deterministic (one file per partition per insert). The schema is evolved mid-fixture
401-
# to exercise scans that span the change, and ends with a REPLACE TABLE to break
402-
# snapshot lineage for the disconnected-snapshots test.
403-
#
404-
# Snapshots written:
399+
# Append scan fixture. Snapshots written:
405400
# 0: append (1, 'a')
406401
# 1: append (2, 'b')
407402
# 2: append (3, 'c'), (4, 'b')
408403
# 3: delete number=2
409-
# 4: append (5, 'd', 100) -- on the evolved schema
404+
# 4: append (5, 'd', 100) -- on evolved schema
410405
# 5: replace table -- lineage break
411406
spark.sql(
412407
f"""

0 commit comments

Comments
 (0)