64.2. Встроенные классы операторов
В базовый дистрибутив Postgres Pro включены классы операторов SP-GiST, перечисленные в Таблице 64.1.
Таблица 64.1. Встроенные классы операторов SP-GiST
Имя | Индексируемый тип данных | Индексируемые операторы | Операторы упорядочивания |
---|---|---|---|
kd_point_ops | point | << <@ <^ >> >^ ~= | <-> |
quad_point_ops | point | << <@ <^ >> >^ ~= | <-> |
range_ops | любой тип диапазона | && &< &> -|- << <@ = >> @> | |
box_ops | box | << &< && &> >> ~= @> <@ &<| <<| |>> |&> | |
poly_ops | polygon | << &< && &> >> ~= @> <@ &<| <<| |>> |&> | <-> |
text_ops | text | < <= = > >= ~<=~ ~<~ ~>=~ ~>~ ^@ | |
inet_ops | inet , cidr | && >> >>= > >= <> << <<= < <= = |
Из двух классов операторов для типа point
классом по умолчанию является quad_point_ops
. Класс kd_point_ops
поддерживает те же операторы, но использует другую структуру данных индекса, которая может дать выигрыш в скорости для некоторых приложений.
Классы операторов quad_point_ops
, kd_point_ops
и poly_ops
поддерживают оператор упорядочивания <->
, позволяющий выполнить поиск k ближайших соседей (k-NN
) по индексированному набору точек или многоугольников.
36.13. column_domain_usage
The view column_domain_usage
identifies all columns (of a table or a view) that make use of some domain defined in the current database and owned by a currently enabled role.
Table 36.11. column_domain_usage
Columns
Name | Data Type | Description |
---|---|---|
domain_catalog | sql_identifier | Name of the database containing the domain (always the current database) |
domain_schema | sql_identifier | Name of the schema containing the domain |
domain_name | sql_identifier | Name of the domain |
table_catalog | sql_identifier | Name of the database containing the table (always the current database) |
table_schema | sql_identifier | Name of the schema containing the table |
table_name | sql_identifier | Name of the table |
column_name | sql_identifier | Name of the column |