Changes between Version 1 and Version 2 of UsersWikiCheckInvalidGeometriesFromGeometryColumns
- Timestamp:
- 05/08/11 09:19:59 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified UsersWikiCheckInvalidGeometriesFromGeometryColumns
v1 v2 16 16 sql := 'DROP TABLE IF EXISTS ' || quote_ident(tabris) ||';'; 17 17 execute(sql); 18 sql := 'CREATE TABLE ' || quote_ident(tabris) || ' (id serial, query TEXT, conteggioINTEGER);';18 sql := 'CREATE TABLE ' || quote_ident(tabris) || ' (id serial, query TEXT, invalidity INTEGER);'; 19 19 sql := 'select ''select count(*) from '' || quote_ident(f_table_schema) || ''.'' || quote_ident(f_table_name) || '' where ST_IsValid('' || f_geometry_column || '')=false;'' as query from public.geometry_columns'; 20 20 … … 23 23 raise notice 'executing: %', _rec1.query; 24 24 execute(_rec1.query) into ris; 25 sql := 'insert into ' || quote_ident(tabris) || ' (query, invalidity) values(' || _rec1.query || ',' || ris || ');'; 25 26 END LOOP; 26 27