BEGIN
rank_search := 30;
rank_address := 30;
+ postcode := upper(postcode);
IF country_code = 'gb' THEN
IF postcode ~ '^([A-Z][A-Z]?[0-9][0-9A-Z]? [0-9][A-Z][A-Z])$' THEN
RETURN NULL;
END IF;
- NEW.name := hstore('ref', NEW.postcode);
+ NEW.name := hstore('ref', NEW.address->'postcode');
- SELECT * FROM get_postcode_rank(NEW.country_code, NEW.postcode)
+ SELECT * FROM get_postcode_rank(NEW.country_code, NEW.address->'postcode')
INTO NEW.rank_search, NEW.rank_address;
ELSEIF NEW.class = 'place' THEN
Then search_name contains
| object | name_vector | nameaddress_vector |
| N1 | foo | the road |
-
- Scenario: Roads take over the postcode from attached houses
- Given the scene roads-with-pois
- And the places
- | osm | class | type | housenr | postcode | street | geometry |
- | N1 | place | house | 1 | 12345 | North St | :p-S1 |
- And the places
- | osm | class | type | name | geometry |
- | W1 | highway | residential | North St | :w-north |
- When importing
- Then search_name contains
- | object | nameaddress_vector |
- | W1 | 12345 |
-
+++ /dev/null
-@DB
-Feature: Update of POI-inherited poscode
- Test updates of postcodes on street which was inherited from a related POI
-
- Background: Street and house with postcode
- Given the scene roads-with-pois
- And the places
- | osm | class | type | housenr | postcode | street | geometry |
- | N1 | place | house | 1 | 12345 | North St |:p-S1 |
- And the places
- | osm | class | type | name | geometry |
- | W1 | highway | residential | North St | :w-north |
- When importing
- Then search_name contains
- | object | nameaddress_vector |
- | W1 | 12345 |
-
- Scenario: POI-inherited postcode remains when way type is changed
- When updating places
- | osm | class | type | name | geometry |
- | W1 | highway | unclassified | North St | :w-north |
- Then search_name contains
- | object | nameaddress_vector |
- | W1 | 12345 |
-
- Scenario: POI-inherited postcode remains when way name is changed
- When updating places
- | osm | class | type | name | geometry |
- | W1 | highway | unclassified | South St | :w-north |
- Then search_name contains
- | object | nameaddress_vector |
- | W1 | 12345 |
-
- Scenario: POI-inherited postcode remains when way geometry is changed
- When updating places
- | osm | class | type | name | geometry |
- | W1 | highway | unclassified | South St | :w-south |
- Then search_name contains
- | object | nameaddress_vector |
- | W1 | 12345 |
-
- Scenario: POI-inherited postcode is added when POI postcode changes
- When updating places
- | osm | class | type | housenr | postcode | street | geometry |
- | N1 | place | house | 1 | 54321 | North St |:p-S1 |
- Then search_name contains
- | object | nameaddress_vector |
- | W1 | 54321 |
-
- Scenario: POI-inherited postcode remains when POI geometry changes
- When updating places
- | osm | class | type | housenr | postcode | street | geometry |
- | N1 | place | house | 1 | 12345 | North St |:p-S2 |
- Then search_name contains
- | object | nameaddress_vector |
- | W1 | 12345 |
-
+++ /dev/null
-@DB
-Feature: Update of search terms
- Tests that search_name table is updated correctly
-
- Scenario: POI-inherited postcode remains when another POI is deleted
- Given the scene roads-with-pois
- And the places
- | osm | class | type | housenr | postcode | street | geometry |
- | N1 | place | house | 1 | 12345 | North St |:p-S1 |
- | N2 | place | house | 2 | | North St |:p-S2 |
- And the places
- | osm | class | type | name | geometry |
- | W1 | highway | residential | North St | :w-north |
- When importing
- Then search_name contains
- | object | nameaddress_vector |
- | W1 | 12345 |
- When marking for delete N2
- Then search_name contains
- | object | nameaddress_vector |
- | W1 | 12345 |