X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b03be15442502aa2e52bacff70fb983cf4397d70..67b6f6350d783d2078274e26b07136b37ea20f46:/sql/partition-tables.src.sql?ds=sidebyside diff --git a/sql/partition-tables.src.sql b/sql/partition-tables.src.sql index 3e32474f..6f799bcf 100644 --- a/sql/partition-tables.src.sql +++ b/sql/partition-tables.src.sql @@ -7,8 +7,8 @@ drop type if exists nearfeature cascade; create type nearfeature as ( place_id BIGINT, keywords int[], - rank_address integer, - rank_search integer, + rank_address smallint, + rank_search smallint, distance float, isguess boolean ); @@ -17,8 +17,8 @@ drop type if exists nearfeaturecentr cascade; create type nearfeaturecentr as ( place_id BIGINT, keywords int[], - rank_address integer, - rank_search integer, + rank_address smallint, + rank_search smallint, distance float, isguess boolean, centroid GEOMETRY @@ -27,8 +27,8 @@ create type nearfeaturecentr as ( drop table IF EXISTS search_name_blank CASCADE; CREATE TABLE search_name_blank ( place_id BIGINT, - search_rank integer, - address_rank integer, + search_rank smallint, + address_rank smallint, name_vector integer[] ); SELECT AddGeometryColumn('search_name_blank', 'centroid', 4326, 'GEOMETRY', 2); @@ -52,8 +52,8 @@ CREATE INDEX idx_search_name_-partition-_centroid ON search_name_-partition- USI CREATE INDEX idx_search_name_-partition-_name_vector ON search_name_-partition- USING GIN (name_vector) WITH (fastupdate = off) {ts:address-index}; CREATE TABLE location_road_-partition- ( - partition integer, place_id BIGINT, + partition SMALLINT, country_code VARCHAR(2) ) {ts:address-data}; SELECT AddGeometryColumn('location_road_-partition-', 'geometry', 4326, 'GEOMETRY', 2);