File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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"""
You can’t perform that action at this time.
0 commit comments