@@ -680,7 +680,7 @@ def test_evaluate_incremental_unmanaged_no_intervals(
680680 clustered_by = [],
681681 column_descriptions = {},
682682 columns_to_types = table_columns ,
683- partition_interval_unit = model .interval_unit ,
683+ partition_interval_unit = model .partition_interval_unit ,
684684 partitioned_by = model .partitioned_by ,
685685 table_format = None ,
686686 storage_format = None ,
@@ -892,7 +892,7 @@ def test_create_prod_table_exists_forward_only(mocker: MockerFixture, adapter_mo
892892 table_format = None ,
893893 storage_format = None ,
894894 partitioned_by = [],
895- partition_interval_unit = IntervalUnit . DAY ,
895+ partition_interval_unit = None ,
896896 clustered_by = [],
897897 table_properties = {},
898898 table_description = None ,
@@ -966,7 +966,7 @@ def test_create_materialized_view(mocker: MockerFixture, adapter_mock, make_snap
966966 materialized = True ,
967967 materialized_properties = {
968968 "clustered_by" : [],
969- "partition_interval_unit" : IntervalUnit . DAY ,
969+ "partition_interval_unit" : None ,
970970 "partitioned_by" : [],
971971 },
972972 view_properties = {},
@@ -1015,7 +1015,7 @@ def test_create_view_with_properties(mocker: MockerFixture, adapter_mock, make_s
10151015 },
10161016 materialized_properties = {
10171017 "clustered_by" : [],
1018- "partition_interval_unit" : IntervalUnit . DAY ,
1018+ "partition_interval_unit" : None ,
10191019 "partitioned_by" : [],
10201020 },
10211021 table_description = None ,
@@ -1668,7 +1668,7 @@ def test_create_scd_type_2_by_time(adapter_mock, make_snapshot):
16681668 table_format = None ,
16691669 storage_format = None ,
16701670 partitioned_by = [],
1671- partition_interval_unit = IntervalUnit . DAY ,
1671+ partition_interval_unit = None ,
16721672 clustered_by = [],
16731673 table_properties = {},
16741674 table_description = None ,
@@ -1723,7 +1723,7 @@ def test_create_ctas_scd_type_2_by_time(adapter_mock, make_snapshot):
17231723 table_format = None ,
17241724 storage_format = None ,
17251725 partitioned_by = [],
1726- partition_interval_unit = IntervalUnit . DAY ,
1726+ partition_interval_unit = None ,
17271727 clustered_by = [],
17281728 table_properties = {},
17291729 table_description = None ,
@@ -1844,7 +1844,7 @@ def test_create_scd_type_2_by_column(adapter_mock, make_snapshot):
18441844 table_format = None ,
18451845 storage_format = None ,
18461846 partitioned_by = [],
1847- partition_interval_unit = IntervalUnit . DAY ,
1847+ partition_interval_unit = None ,
18481848 clustered_by = [],
18491849 table_properties = {},
18501850 table_description = None ,
@@ -1893,7 +1893,7 @@ def test_create_ctas_scd_type_2_by_column(adapter_mock, make_snapshot):
18931893 table_format = None ,
18941894 storage_format = None ,
18951895 partitioned_by = [],
1896- partition_interval_unit = IntervalUnit . DAY ,
1896+ partition_interval_unit = None ,
18971897 clustered_by = [],
18981898 table_properties = {},
18991899 table_description = None ,
@@ -2167,7 +2167,7 @@ def test_create_incremental_by_unique_no_intervals(adapter_mock, make_snapshot):
21672167 clustered_by = [],
21682168 column_descriptions = {},
21692169 columns_to_types = table_columns ,
2170- partition_interval_unit = model .interval_unit ,
2170+ partition_interval_unit = model .partition_interval_unit ,
21712171 partitioned_by = model .partitioned_by ,
21722172 table_format = None ,
21732173 storage_format = None ,
@@ -2297,7 +2297,7 @@ def test_create_seed(mocker: MockerFixture, adapter_mock, make_snapshot):
22972297 table_format = None ,
22982298 storage_format = None ,
22992299 partitioned_by = [],
2300- partition_interval_unit = IntervalUnit . DAY ,
2300+ partition_interval_unit = None ,
23012301 clustered_by = [],
23022302 table_properties = {},
23032303 table_description = None ,
@@ -2372,7 +2372,7 @@ def test_create_seed_on_error(mocker: MockerFixture, adapter_mock, make_snapshot
23722372 table_format = None ,
23732373 storage_format = None ,
23742374 partitioned_by = [],
2375- partition_interval_unit = IntervalUnit . DAY ,
2375+ partition_interval_unit = None ,
23762376 clustered_by = [],
23772377 table_properties = {},
23782378 table_description = None ,
@@ -2428,7 +2428,7 @@ def test_create_seed_no_intervals(mocker: MockerFixture, adapter_mock, make_snap
24282428 table_format = None ,
24292429 storage_format = None ,
24302430 partitioned_by = [],
2431- partition_interval_unit = IntervalUnit . DAY ,
2431+ partition_interval_unit = None ,
24322432 clustered_by = [],
24332433 table_properties = {},
24342434 table_description = None ,
@@ -2968,7 +2968,7 @@ def test_create_managed(adapter_mock, make_snapshot, mocker: MockerFixture):
29682968 table_format = model .table_format ,
29692969 storage_format = model .storage_format ,
29702970 partitioned_by = model .partitioned_by ,
2971- partition_interval_unit = model .interval_unit ,
2971+ partition_interval_unit = model .partition_interval_unit ,
29722972 clustered_by = model .clustered_by ,
29732973 table_properties = model .physical_properties ,
29742974 table_description = None ,
@@ -3054,7 +3054,7 @@ def test_evaluate_managed(adapter_mock, make_snapshot, mocker: MockerFixture):
30543054 table_format = model .table_format ,
30553055 storage_format = model .storage_format ,
30563056 partitioned_by = model .partitioned_by ,
3057- partition_interval_unit = model .interval_unit ,
3057+ partition_interval_unit = model .partition_interval_unit ,
30583058 clustered_by = model .clustered_by ,
30593059 table_properties = model .physical_properties ,
30603060 table_description = model .description ,
@@ -3221,7 +3221,7 @@ def test_create_snapshot(
32213221 table_format = None ,
32223222 storage_format = None ,
32233223 partitioned_by = [],
3224- partition_interval_unit = IntervalUnit . DAY ,
3224+ partition_interval_unit = None ,
32253225 clustered_by = [],
32263226 table_properties = {},
32273227 table_description = None ,
@@ -3268,7 +3268,7 @@ def test_migrate_snapshot(snapshot: Snapshot, mocker: MockerFixture, adapter_moc
32683268 table_format = None ,
32693269 storage_format = None ,
32703270 partitioned_by = [],
3271- partition_interval_unit = IntervalUnit . DAY ,
3271+ partition_interval_unit = None ,
32723272 clustered_by = [],
32733273 table_properties = {},
32743274 table_description = None ,
0 commit comments