proof of concept for location iq integration for autocomplete requests#2105
Draft
KathiAurina wants to merge 3 commits into
Draft
proof of concept for location iq integration for autocomplete requests#2105KathiAurina wants to merge 3 commits into
KathiAurina wants to merge 3 commits into
Conversation
Comment on lines
+68
to
+69
| "ALTER TABLE location_nominatimperiodstats " | ||
| "DROP CONSTRAINT IF EXISTS location_nominatimperiod_period_type_period_key_160dca5b_uniq", |
Comment on lines
+70
to
+71
| "ALTER TABLE location_nominatimrequestlog " | ||
| "DROP CONSTRAINT IF EXISTS location_nominatimrequestlog_bucket_key_key", |
Comment on lines
+72
to
+73
| "ALTER TABLE location_nominatimrequestlog " | ||
| "DROP CONSTRAINT IF EXISTS location_nominatimrequestlog_minute_key_key", |
Comment on lines
+75
to
+76
| "ALTER TABLE location_nominatimperiodstats " | ||
| "ADD COLUMN IF NOT EXISTS provider varchar(20) NOT NULL DEFAULT 'nominatim'", |
Comment on lines
+77
to
+78
| "ALTER TABLE location_nominatimrequestlog " | ||
| "ADD COLUMN IF NOT EXISTS provider varchar(20) NOT NULL DEFAULT 'nominatim'", |
Comment on lines
+86
to
+87
| "ALTER TABLE location_nominatimperiodstats " | ||
| "DROP CONSTRAINT IF EXISTS location_nominatimperio_period_type_period_key_provider_uniq", |
Comment on lines
+88
to
+89
| "ALTER TABLE location_nominatimrequestlog " | ||
| "DROP CONSTRAINT IF EXISTS location_nominatimrequ_minute_key_provider_uniq", |
Comment on lines
+90
to
+92
| "ALTER TABLE location_nominatimperiodstats " | ||
| "ADD CONSTRAINT location_nominatimperio_period_type_period_key_provider_uniq " | ||
| "UNIQUE (period_type, period_key, provider)", |
Comment on lines
+93
to
+94
| "CREATE INDEX IF NOT EXISTS location_no_period__5a9ac2_idx " | ||
| "ON location_nominatimperiodstats (period_type, period_key, provider)", |
Comment on lines
+95
to
+96
| "CREATE INDEX IF NOT EXISTS location_nominatimrequestlog_minute_key_idx " | ||
| "ON location_nominatimrequestlog (minute_key)", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Checked the following
/backend:make format && make lintWhat and Why