2013-04-10 00:44:05 +04:00
|
|
|
drop type if exists nearplace cascade;
|
2013-01-19 19:19:55 +04:00
|
|
|
create type nearplace as (
|
|
|
|
place_id BIGINT
|
|
|
|
);
|
|
|
|
|
2013-04-10 00:44:05 +04:00
|
|
|
drop type if exists nearfeature cascade;
|
2013-01-19 19:19:55 +04:00
|
|
|
create type nearfeature as (
|
|
|
|
place_id BIGINT,
|
|
|
|
keywords int[],
|
2017-04-14 16:57:09 +03:00
|
|
|
rank_address smallint,
|
|
|
|
rank_search smallint,
|
2013-01-19 19:19:55 +04:00
|
|
|
distance float,
|
|
|
|
isguess boolean
|
|
|
|
);
|
|
|
|
|
2013-04-10 00:44:05 +04:00
|
|
|
drop type if exists nearfeaturecentr cascade;
|
2013-01-19 19:19:55 +04:00
|
|
|
create type nearfeaturecentr as (
|
|
|
|
place_id BIGINT,
|
|
|
|
keywords int[],
|
2017-04-14 16:57:09 +03:00
|
|
|
rank_address smallint,
|
|
|
|
rank_search smallint,
|
2013-01-19 19:19:55 +04:00
|
|
|
distance float,
|
|
|
|
isguess boolean,
|
2017-07-01 23:49:24 +03:00
|
|
|
postcode TEXT,
|
2013-01-19 19:19:55 +04:00
|
|
|
centroid GEOMETRY
|
|
|
|
);
|
|
|
|
|
2013-04-10 00:44:05 +04:00
|
|
|
drop table IF EXISTS search_name_blank CASCADE;
|
|
|
|
CREATE TABLE search_name_blank (
|
|
|
|
place_id BIGINT,
|
2017-04-14 16:57:09 +03:00
|
|
|
search_rank smallint,
|
|
|
|
address_rank smallint,
|
2017-06-30 00:34:09 +03:00
|
|
|
name_vector integer[],
|
|
|
|
centroid GEOMETRY(Geometry, 4326)
|
2013-04-10 00:44:05 +04:00
|
|
|
);
|
|
|
|
|
|
|
|
|
2013-01-19 19:19:55 +04:00
|
|
|
-- start
|
2014-11-27 23:54:09 +03:00
|
|
|
CREATE TABLE location_area_large_-partition- () INHERITS (location_area_large) {ts:address-data};
|
|
|
|
CREATE INDEX idx_location_area_large_-partition-_place_id ON location_area_large_-partition- USING BTREE (place_id) {ts:address-index};
|
|
|
|
CREATE INDEX idx_location_area_large_-partition-_geometry ON location_area_large_-partition- USING GIST (geometry) {ts:address-index};
|
2013-01-19 19:19:55 +04:00
|
|
|
|
2014-11-27 23:54:09 +03:00
|
|
|
CREATE TABLE search_name_-partition- () INHERITS (search_name_blank) {ts:address-data};
|
|
|
|
CREATE INDEX idx_search_name_-partition-_place_id ON search_name_-partition- USING BTREE (place_id) {ts:address-index};
|
2019-07-28 14:29:35 +03:00
|
|
|
CREATE INDEX idx_search_name_-partition-_centroid_street ON search_name_-partition- USING GIST (centroid) {ts:address-index} where search_rank between 26 and 27;
|
|
|
|
CREATE INDEX idx_search_name_-partition-_centroid_place ON search_name_-partition- USING GIST (centroid) {ts:address-index} where search_rank between 2 and 25;
|
2013-01-19 19:19:55 +04:00
|
|
|
|
2018-07-18 02:18:33 +03:00
|
|
|
DROP TABLE IF EXISTS location_road_-partition-;
|
2013-01-19 19:19:55 +04:00
|
|
|
CREATE TABLE location_road_-partition- (
|
|
|
|
place_id BIGINT,
|
2017-04-14 16:57:09 +03:00
|
|
|
partition SMALLINT,
|
2017-06-30 00:34:09 +03:00
|
|
|
country_code VARCHAR(2),
|
|
|
|
geometry GEOMETRY(Geometry, 4326)
|
2014-11-27 23:54:09 +03:00
|
|
|
) {ts:address-data};
|
|
|
|
CREATE INDEX idx_location_road_-partition-_geometry ON location_road_-partition- USING GIST (geometry) {ts:address-index};
|
|
|
|
CREATE INDEX idx_location_road_-partition-_place_id ON location_road_-partition- USING BTREE (place_id) {ts:address-index};
|
2013-01-19 19:19:55 +04:00
|
|
|
|
|
|
|
-- end
|