diff --git a/images/tiler-imposm/queries/admin_boundaries_centroids.sql b/images/tiler-imposm/queries/admin_boundaries_centroids.sql index c0e98cd4..b955df66 100644 --- a/images/tiler-imposm/queries/admin_boundaries_centroids.sql +++ b/images/tiler-imposm/queries/admin_boundaries_centroids.sql @@ -21,12 +21,12 @@ BEGIN WHERE role = ''label'' );', table_name); EXCEPTION WHEN OTHERS THEN - RAISE NOTICE ''Error updating table %: %'', table_name, SQLERRM; + RAISE NOTICE 'Error updating table %: %', table_name, SQLERRM; END; END LOOP; -- Log completion - RAISE NOTICE ''Update completed for all matching tables.''; + RAISE NOTICE 'Update completed for all matching tables.'; END; $$ LANGUAGE plpgsql;