Skip to content

Commit

Permalink
Fix admin boundaries centroids query
Browse files Browse the repository at this point in the history
  • Loading branch information
Rub21 committed Dec 10, 2024
1 parent dd84456 commit 4567ce0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions images/tiler-imposm/queries/admin_boundaries_centroids.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 4567ce0

Please sign in to comment.