Sometimes my PostGIS database creates a extended_geometry_columns table. After some search i've not found what is the use of this table.
I'm using PostgreSQL 8.4 and PostGIS 1.3.3
This is the definition of the table
CREATE TABLE extended_geometry_columns (
f_table_schema character varying(265) NOT NULL,
f_table_name character varying(256) NOT NULL,
x_min double precision,
y_min double precision,
x_max double precision,
y_max double precision,
CONSTRAINT extended_geometry_columns_pkey PRIMARY KEY (f_table_schema, f_table_name)
);
AFAIK the only tools that are connecting to the database are pgadmin3/psql, gvSIG, and some custom python scripts (that i'm sure not create the table).
Thanks