+ -- Names of linked places need to be merged in, so search for a linkable
+ -- place already here.
+ SELECT * INTO location FROM find_linked_place(p);
+
+ IF location.place_id is not NULL THEN
+ linked_place_id := location.place_id;
+
+ IF NOT location.name IS NULL THEN
+ name := location.name || name;
+ END IF;
+ END IF;
+