@@ -9,7 +9,7 @@ Feature: Timestamps in properties table should reflect timestamps in input file
99 """
1010 When running osm2pgsql pgsql
1111
12- Then table osm2pgsql_properties has 8 rows
12+ Then table osm2pgsql_properties has 9 rows
1313 And table osm2pgsql_properties contains
1414 | property | value |
1515 | attributes | false |
@@ -19,6 +19,7 @@ Feature: Timestamps in properties table should reflect timestamps in input file
1919 | updatable | false |
2020 | import_timestamp | 2020 -01 -02T03 :04 :06Z |
2121 | current_timestamp | 2020 -01 -02T03 :04 :06Z |
22+ | output | pgsql |
2223
2324 Scenario : Create database without timestamps
2425 Given the OSM data
@@ -29,14 +30,15 @@ Feature: Timestamps in properties table should reflect timestamps in input file
2930 """
3031 When running osm2pgsql pgsql
3132
32- Then table osm2pgsql_properties has 6 rows
33+ Then table osm2pgsql_properties has 7 rows
3334 Then table osm2pgsql_properties contains
3435 | property | value |
3536 | attributes | false |
3637 | db_format | 0 |
3738 | flat_node_file | |
3839 | prefix | planet_osm |
3940 | updatable | false |
41+ | output | pgsql |
4042
4143 Scenario : Create and update database with timestamps
4244 Given the OSM data
@@ -49,7 +51,7 @@ Feature: Timestamps in properties table should reflect timestamps in input file
4951 When running osm2pgsql pgsql with parameters
5052 | --create | --slim |
5153
52- Then table osm2pgsql_properties has 8 rows
54+ Then table osm2pgsql_properties has 9 rows
5355 And table osm2pgsql_properties contains
5456 | property | value |
5557 | attributes | false |
@@ -59,6 +61,7 @@ Feature: Timestamps in properties table should reflect timestamps in input file
5961 | updatable | true |
6062 | import_timestamp | 2020 -01 -02T03 :04 :06Z |
6163 | current_timestamp | 2020 -01 -02T03 :04 :06Z |
64+ | output | pgsql |
6265
6366 Given the OSM data
6467 """
@@ -69,7 +72,7 @@ Feature: Timestamps in properties table should reflect timestamps in input file
6972 When running osm2pgsql pgsql with parameters
7073 | --append | --slim |
7174
72- Then table osm2pgsql_properties has 8 rows
75+ Then table osm2pgsql_properties has 9 rows
7376 And table osm2pgsql_properties contains
7477 | property | value |
7578 | attributes | false |
@@ -79,6 +82,7 @@ Feature: Timestamps in properties table should reflect timestamps in input file
7982 | updatable | true |
8083 | import_timestamp | 2020 -01 -02T03 :04 :06Z |
8184 | current_timestamp | 2020 -01 -02T03 :06 :05Z |
85+ | output | pgsql |
8286
8387 Scenario : Create database with timestamps and update without timestamps
8488 Given the OSM data
@@ -91,7 +95,7 @@ Feature: Timestamps in properties table should reflect timestamps in input file
9195 When running osm2pgsql pgsql with parameters
9296 | --create | --slim |
9397
94- Then table osm2pgsql_properties has 8 rows
98+ Then table osm2pgsql_properties has 9 rows
9599 And table osm2pgsql_properties contains
96100 | property | value |
97101 | attributes | false |
@@ -101,6 +105,7 @@ Feature: Timestamps in properties table should reflect timestamps in input file
101105 | updatable | true |
102106 | import_timestamp | 2020 -01 -02T03 :04 :06Z |
103107 | current_timestamp | 2020 -01 -02T03 :04 :06Z |
108+ | output | pgsql |
104109
105110 Given the OSM data
106111 """
@@ -111,7 +116,7 @@ Feature: Timestamps in properties table should reflect timestamps in input file
111116 When running osm2pgsql pgsql with parameters
112117 | --append | --slim |
113118
114- Then table osm2pgsql_properties has 8 rows
119+ Then table osm2pgsql_properties has 9 rows
115120 And table osm2pgsql_properties contains
116121 | property | value |
117122 | attributes | false |
@@ -121,6 +126,7 @@ Feature: Timestamps in properties table should reflect timestamps in input file
121126 | updatable | true |
122127 | import_timestamp | 2020 -01 -02T03 :04 :06Z |
123128 | current_timestamp | 2020 -01 -02T03 :04 :06Z |
129+ | output | pgsql |
124130
125131 Scenario : Create database without timestamps and update with timestamps
126132 Given the OSM data
@@ -133,14 +139,15 @@ Feature: Timestamps in properties table should reflect timestamps in input file
133139 When running osm2pgsql pgsql with parameters
134140 | --create | --slim |
135141
136- Then table osm2pgsql_properties has 6 rows
142+ Then table osm2pgsql_properties has 7 rows
137143 And table osm2pgsql_properties contains
138144 | property | value |
139145 | attributes | false |
140146 | db_format | 1 |
141147 | flat_node_file | |
142148 | prefix | planet_osm |
143149 | updatable | true |
150+ | output | pgsql |
144151
145152 Given the OSM data
146153 """
@@ -151,7 +158,7 @@ Feature: Timestamps in properties table should reflect timestamps in input file
151158 When running osm2pgsql pgsql with parameters
152159 | --append | --slim |
153160
154- Then table osm2pgsql_properties has 7 rows
161+ Then table osm2pgsql_properties has 8 rows
155162 And table osm2pgsql_properties contains
156163 | property | value |
157164 | attributes | false |
@@ -160,4 +167,5 @@ Feature: Timestamps in properties table should reflect timestamps in input file
160167 | prefix | planet_osm |
161168 | updatable | true |
162169 | current_timestamp | 2020 -01 -02T03 :06 :05Z |
170+ | output | pgsql |
163171
0 commit comments