Changes between Initial Version and Version 1 of Ticket #1083
- Timestamp:
- 07/02/11 00:02:00 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1083
- Property Summary Get rid of probe_geometry_columns (typmod support) → Get rid of probe_geometry_columns (typmod support) and other obsolete
-
Ticket #1083 – Description
initial v1 1 1 All this function did was to inspect the geometry_columns table and notify of stale entries and add missing entries. 2 2 3 Now that geometry_columns will be a view in 2.0 , this function iscompletely irrelevant.3 Now that geometry_columns will be a view in 2.0 and we also have typmod, this function and the rest of it's kind are completely irrelevant. 4 4 5 5 We hadn't marked it for deprecation, but it seems necessary to completely remove it or keep it and have it do nothing except to show a notice that says: … … 7 7 "I do not do anything anymore, get with the program" 8 8 9 I'd just assume drop the function entirely 9 I'd just assume drop the function entirely. 10 11 There are some dumb ones like rename_geometry_table_constraints() 12 which I didn't even know existed but already does nothing but to tell you it does nothing. 13 14 These I have decided to just add to legacy but strip them of their functionality so they just return a "I am obsolete message". Just for those people with old code lying around that happen to call these things. 15 16 Functions in this family so far are: 17 18 rename_geometry_table_constraints(); 19 fix_geometry_columns(); 20 probe_geometry_columns