@@ -679,7 +679,7 @@ def test_evaluate_incremental_unmanaged_no_intervals(
679679 clustered_by = [],
680680 column_descriptions = {},
681681 columns_to_types = table_columns ,
682- partition_interval_unit = model .interval_unit ,
682+ partition_interval_unit = model .partition_interval_unit ,
683683 partitioned_by = model .partitioned_by ,
684684 table_format = None ,
685685 storage_format = None ,
@@ -891,7 +891,7 @@ def test_create_prod_table_exists_forward_only(mocker: MockerFixture, adapter_mo
891891 table_format = None ,
892892 storage_format = None ,
893893 partitioned_by = [],
894- partition_interval_unit = IntervalUnit . DAY ,
894+ partition_interval_unit = None ,
895895 clustered_by = [],
896896 table_properties = {},
897897 table_description = None ,
@@ -965,7 +965,7 @@ def test_create_materialized_view(mocker: MockerFixture, adapter_mock, make_snap
965965 materialized = True ,
966966 materialized_properties = {
967967 "clustered_by" : [],
968- "partition_interval_unit" : IntervalUnit . DAY ,
968+ "partition_interval_unit" : None ,
969969 "partitioned_by" : [],
970970 },
971971 view_properties = {},
@@ -1014,7 +1014,7 @@ def test_create_view_with_properties(mocker: MockerFixture, adapter_mock, make_s
10141014 },
10151015 materialized_properties = {
10161016 "clustered_by" : [],
1017- "partition_interval_unit" : IntervalUnit . DAY ,
1017+ "partition_interval_unit" : None ,
10181018 "partitioned_by" : [],
10191019 },
10201020 table_description = None ,
@@ -1667,7 +1667,7 @@ def test_create_scd_type_2_by_time(adapter_mock, make_snapshot):
16671667 table_format = None ,
16681668 storage_format = None ,
16691669 partitioned_by = [],
1670- partition_interval_unit = IntervalUnit . DAY ,
1670+ partition_interval_unit = None ,
16711671 clustered_by = [],
16721672 table_properties = {},
16731673 table_description = None ,
@@ -1722,7 +1722,7 @@ def test_create_ctas_scd_type_2_by_time(adapter_mock, make_snapshot):
17221722 table_format = None ,
17231723 storage_format = None ,
17241724 partitioned_by = [],
1725- partition_interval_unit = IntervalUnit . DAY ,
1725+ partition_interval_unit = None ,
17261726 clustered_by = [],
17271727 table_properties = {},
17281728 table_description = None ,
@@ -1843,7 +1843,7 @@ def test_create_scd_type_2_by_column(adapter_mock, make_snapshot):
18431843 table_format = None ,
18441844 storage_format = None ,
18451845 partitioned_by = [],
1846- partition_interval_unit = IntervalUnit . DAY ,
1846+ partition_interval_unit = None ,
18471847 clustered_by = [],
18481848 table_properties = {},
18491849 table_description = None ,
@@ -1892,7 +1892,7 @@ def test_create_ctas_scd_type_2_by_column(adapter_mock, make_snapshot):
18921892 table_format = None ,
18931893 storage_format = None ,
18941894 partitioned_by = [],
1895- partition_interval_unit = IntervalUnit . DAY ,
1895+ partition_interval_unit = None ,
18961896 clustered_by = [],
18971897 table_properties = {},
18981898 table_description = None ,
@@ -2166,7 +2166,7 @@ def test_create_incremental_by_unique_no_intervals(adapter_mock, make_snapshot):
21662166 clustered_by = [],
21672167 column_descriptions = {},
21682168 columns_to_types = table_columns ,
2169- partition_interval_unit = model .interval_unit ,
2169+ partition_interval_unit = model .partition_interval_unit ,
21702170 partitioned_by = model .partitioned_by ,
21712171 table_format = None ,
21722172 storage_format = None ,
@@ -2271,7 +2271,7 @@ def test_create_seed(mocker: MockerFixture, adapter_mock, make_snapshot):
22712271 table_format = None ,
22722272 storage_format = None ,
22732273 partitioned_by = [],
2274- partition_interval_unit = IntervalUnit . DAY ,
2274+ partition_interval_unit = None ,
22752275 clustered_by = [],
22762276 table_properties = {},
22772277 table_description = None ,
@@ -2346,7 +2346,7 @@ def test_create_seed_on_error(mocker: MockerFixture, adapter_mock, make_snapshot
23462346 table_format = None ,
23472347 storage_format = None ,
23482348 partitioned_by = [],
2349- partition_interval_unit = IntervalUnit . DAY ,
2349+ partition_interval_unit = None ,
23502350 clustered_by = [],
23512351 table_properties = {},
23522352 table_description = None ,
@@ -2402,7 +2402,7 @@ def test_create_seed_no_intervals(mocker: MockerFixture, adapter_mock, make_snap
24022402 table_format = None ,
24032403 storage_format = None ,
24042404 partitioned_by = [],
2405- partition_interval_unit = IntervalUnit . DAY ,
2405+ partition_interval_unit = None ,
24062406 clustered_by = [],
24072407 table_properties = {},
24082408 table_description = None ,
@@ -2808,7 +2808,7 @@ def test_create_managed(adapter_mock, make_snapshot, mocker: MockerFixture):
28082808 table_format = model .table_format ,
28092809 storage_format = model .storage_format ,
28102810 partitioned_by = model .partitioned_by ,
2811- partition_interval_unit = model .interval_unit ,
2811+ partition_interval_unit = model .partition_interval_unit ,
28122812 clustered_by = model .clustered_by ,
28132813 table_properties = model .physical_properties ,
28142814 table_description = None ,
@@ -2894,7 +2894,7 @@ def test_evaluate_managed(adapter_mock, make_snapshot, mocker: MockerFixture):
28942894 table_format = model .table_format ,
28952895 storage_format = model .storage_format ,
28962896 partitioned_by = model .partitioned_by ,
2897- partition_interval_unit = model .interval_unit ,
2897+ partition_interval_unit = model .partition_interval_unit ,
28982898 clustered_by = model .clustered_by ,
28992899 table_properties = model .physical_properties ,
29002900 table_description = model .description ,
@@ -3061,7 +3061,7 @@ def test_create_snapshot(
30613061 table_format = None ,
30623062 storage_format = None ,
30633063 partitioned_by = [],
3064- partition_interval_unit = IntervalUnit . DAY ,
3064+ partition_interval_unit = None ,
30653065 clustered_by = [],
30663066 table_properties = {},
30673067 table_description = None ,
@@ -3108,7 +3108,7 @@ def test_migrate_snapshot(snapshot: Snapshot, mocker: MockerFixture, adapter_moc
31083108 table_format = None ,
31093109 storage_format = None ,
31103110 partitioned_by = [],
3111- partition_interval_unit = IntervalUnit . DAY ,
3111+ partition_interval_unit = None ,
31123112 clustered_by = [],
31133113 table_properties = {},
31143114 table_description = None ,
0 commit comments