@@ -83,22 +83,22 @@ struct options_flat_node_cache
83
83
}
84
84
};
85
85
86
- struct options_slim_new_format
86
+ struct options_slim_legacy_format
87
87
{
88
88
static options_t options (testing::pg::tempdb_t const &tmpdb)
89
89
{
90
90
options_t o = testing::opt_t ().slim (tmpdb);
91
- o.middle_database_format = 2 ;
91
+ o.middle_database_format = 1 ;
92
92
return o;
93
93
}
94
94
};
95
95
96
- struct options_slim_new_format_with_flatnodes
96
+ struct options_slim_legacy_format_with_flatnodes
97
97
{
98
98
static options_t options (testing::pg::tempdb_t const &tmpdb)
99
99
{
100
100
options_t o = testing::opt_t ().slim (tmpdb).flatnodes ();
101
- o.middle_database_format = 2 ;
101
+ o.middle_database_format = 1 ;
102
102
return o;
103
103
}
104
104
};
@@ -112,7 +112,7 @@ struct options_ram_optimized
112
112
};
113
113
114
114
TEMPLATE_TEST_CASE (" middle import" , " " , options_slim_default,
115
- options_slim_new_format , options_slim_with_lc_prefix,
115
+ options_slim_legacy_format , options_slim_with_lc_prefix,
116
116
options_slim_with_uc_prefix, options_slim_with_schema,
117
117
options_ram_optimized)
118
118
{
@@ -367,9 +367,9 @@ static bool no_node(std::shared_ptr<middle_pgsql_t> const &mid, osmid_t id)
367
367
}
368
368
369
369
TEMPLATE_TEST_CASE (" middle: add, delete and update node" , " " ,
370
- options_slim_default, options_slim_new_format ,
370
+ options_slim_default, options_slim_legacy_format ,
371
371
options_flat_node_cache,
372
- options_slim_new_format_with_flatnodes )
372
+ options_slim_legacy_format_with_flatnodes )
373
373
{
374
374
auto thread_pool = std::make_shared<thread_pool_t >(1U );
375
375
@@ -586,9 +586,9 @@ static bool no_way(std::shared_ptr<middle_pgsql_t> const &mid, osmid_t id)
586
586
}
587
587
588
588
TEMPLATE_TEST_CASE (" middle: add, delete and update way" , " " ,
589
- options_slim_default, options_slim_new_format ,
589
+ options_slim_default, options_slim_legacy_format ,
590
590
options_flat_node_cache,
591
- options_slim_new_format_with_flatnodes )
591
+ options_slim_legacy_format_with_flatnodes )
592
592
{
593
593
auto thread_pool = std::make_shared<thread_pool_t >(1U );
594
594
@@ -739,8 +739,8 @@ TEMPLATE_TEST_CASE("middle: add, delete and update way", "",
739
739
}
740
740
741
741
TEMPLATE_TEST_CASE (" middle: add way with attributes" , " " , options_slim_default,
742
- options_slim_new_format , options_flat_node_cache,
743
- options_slim_new_format_with_flatnodes )
742
+ options_slim_legacy_format , options_flat_node_cache,
743
+ options_slim_legacy_format_with_flatnodes )
744
744
{
745
745
auto thread_pool = std::make_shared<thread_pool_t >(1U );
746
746
@@ -840,9 +840,9 @@ static bool no_relation(std::shared_ptr<middle_pgsql_t> const &mid, osmid_t id)
840
840
}
841
841
842
842
TEMPLATE_TEST_CASE (" middle: add, delete and update relation" , " " ,
843
- options_slim_default, options_slim_new_format ,
843
+ options_slim_default, options_slim_legacy_format ,
844
844
options_flat_node_cache,
845
- options_slim_new_format_with_flatnodes )
845
+ options_slim_legacy_format_with_flatnodes )
846
846
{
847
847
auto thread_pool = std::make_shared<thread_pool_t >(1U );
848
848
@@ -993,9 +993,9 @@ TEMPLATE_TEST_CASE("middle: add, delete and update relation", "",
993
993
}
994
994
995
995
TEMPLATE_TEST_CASE (" middle: add relation with attributes" , " " ,
996
- options_slim_default, options_slim_new_format ,
996
+ options_slim_default, options_slim_legacy_format ,
997
997
options_flat_node_cache,
998
- options_slim_new_format_with_flatnodes )
998
+ options_slim_legacy_format_with_flatnodes )
999
999
{
1000
1000
auto thread_pool = std::make_shared<thread_pool_t >(1U );
1001
1001
@@ -1042,8 +1042,8 @@ TEMPLATE_TEST_CASE("middle: add relation with attributes", "",
1042
1042
}
1043
1043
1044
1044
TEMPLATE_TEST_CASE (" middle: change nodes in way" , " " , options_slim_default,
1045
- options_slim_new_format , options_flat_node_cache,
1046
- options_slim_new_format_with_flatnodes )
1045
+ options_slim_legacy_format , options_flat_node_cache,
1046
+ options_slim_legacy_format_with_flatnodes )
1047
1047
{
1048
1048
auto thread_pool = std::make_shared<thread_pool_t >(1U );
1049
1049
@@ -1198,8 +1198,8 @@ TEMPLATE_TEST_CASE("middle: change nodes in way", "", options_slim_default,
1198
1198
}
1199
1199
1200
1200
TEMPLATE_TEST_CASE (" middle: change nodes in relation" , " " , options_slim_default,
1201
- options_slim_new_format , options_flat_node_cache,
1202
- options_slim_new_format_with_flatnodes )
1201
+ options_slim_legacy_format , options_flat_node_cache,
1202
+ options_slim_legacy_format_with_flatnodes )
1203
1203
{
1204
1204
auto thread_pool = std::make_shared<thread_pool_t >(1U );
1205
1205
0 commit comments