-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sql: add new system table for locality locations
Adds a new table, `system.locations`, which maps a string locality (i.e. "city=New York City") to geographic coordinates, specified as a latitude, longitude decimal pair, specified in degrees. A new admin API call returns the contents of the table, for use from the admin UI. Fixes #19532 Release note (ui): A system table to allow operators to designate geographic coordinates for any locality. For use with frontend cluster visualization.
- Loading branch information
1 parent
c2b7dea
commit b98b431
Showing
18 changed files
with
917 additions
and
194 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -315,4 +315,5 @@ const ( | |
TimeseriesRangesID = 18 | ||
WebSessionsTableID = 19 | ||
TableStatisticsTableID = 20 | ||
LocationsTableID = 21 | ||
) |
This file contains 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
This file contains 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
Oops, something went wrong.