Populate_Geometry_Columns — 确保几何列定义了类型修饰符或具有适当的空间约束。
text Populate_Geometry_Columns(
boolean use_typmod=true)
;
int Populate_Geometry_Columns(
oid relation_oid, boolean use_typmod=true)
;
确保几何列具有适当的类型修饰符或空间约束,以确保它们在 geometry_columns
视图中正确注册。默认情况下,将所有没有类型修饰符的几何列转换为具有类型修饰符的几何列。
为了向后兼容性和空间需求(例如表继承,其中每个子表可能具有不同的几何类型),仍然支持旧的检查约束行为。如果您需要旧的行为,则需要将新的可选参数传递为 false use_typmod=false
。在这种情况下,几何列将创建为没有类型修饰符,但将定义 3 个约束。特别是,这意味着每个属于表的几何列至少具有三个约束
enforce_dims_geom
- 确保每个几何体具有相同的维度(参见 ST_NDims)
enforce_geotype_geom
- 确保每个几何体都是相同类型(参见 GeometryType)
enforce_srid_geom
- 确保每个几何体都在相同的投影中(参见 ST_SRID)
如果提供了表 oid
,则此函数尝试确定表中所有几何列的 srid、维度和几何类型,并根据需要添加约束。如果成功,则将适当的行插入 geometry_columns 表中,否则,将捕获异常并引发错误通知,描述问题。
如果提供了视图的 oid
,与表 oid 一样,此函数尝试确定视图中所有几何体的 srid、维度和类型,将适当的条目插入 geometry_columns
表中,但不会执行任何操作来强制执行约束。
无参数变体是参数化变体的简单包装器,它首先截断并重新填充数据库中每个空间表和视图的 geometry_columns 表,并在适当的情况下为表添加空间约束。它返回数据库中检测到的几何列数量和插入 geometry_columns
表中的数量的摘要。参数化版本只返回插入 geometry_columns
表中的行数。
可用性:1.4.0
更改:2.0.0 默认情况下,现在使用类型修饰符而不是检查约束来约束几何类型。您仍然可以使用检查约束行为,方法是使用新的 use_typmod
并将其设置为 false。
增强:2.0.0 版本引入了可选参数 use_typmod
,允许控制列是使用类型修饰符创建还是使用检查约束创建。
CREATE TABLE public.myspatial_table(gid serial, geom geometry); INSERT INTO myspatial_table(geom) VALUES(ST_GeomFromText('LINESTRING(1 2, 3 4)',4326) ); -- This will now use typ modifiers. For this to work, there must exist data SELECT Populate_Geometry_Columns('public.myspatial_table'::regclass); populate_geometry_columns -------------------------- 1 \d myspatial_table Table "public.myspatial_table" Column | Type | Modifiers --------+---------------------------+--------------------------------------------------------------- gid | integer | not null default nextval('myspatial_table_gid_seq'::regclass) geom | geometry(LineString,4326) |
-- This will change the geometry columns to use constraints if they are not typmod or have constraints already. --For this to work, there must exist data CREATE TABLE public.myspatial_table_cs(gid serial, geom geometry); INSERT INTO myspatial_table_cs(geom) VALUES(ST_GeomFromText('LINESTRING(1 2, 3 4)',4326) ); SELECT Populate_Geometry_Columns('public.myspatial_table_cs'::regclass, false); populate_geometry_columns -------------------------- 1 \d myspatial_table_cs Table "public.myspatial_table_cs" Column | Type | Modifiers --------+----------+------------------------------------------------------------------ gid | integer | not null default nextval('myspatial_table_cs_gid_seq'::regclass) geom | geometry | Check constraints: "enforce_dims_geom" CHECK (st_ndims(geom) = 2) "enforce_geotype_geom" CHECK (geometrytype(geom) = 'LINESTRING'::text OR geom IS NULL) "enforce_srid_geom" CHECK (st_srid(geom) = 4326)