[GENERAL] DELETE FROM pg_class

2007-09-24 Thread Dawid Kuroczko
Hello, I see that I can modify system tables even though I have not set allow_system_table_mods... Is this a feature or a bug? Self contained code postgres=# SELECT version(); version

Re: [GENERAL] DELETE FROM pg_class

2007-09-24 Thread Simon Riggs
On Mon, 2007-09-24 at 14:44 +0200, Dawid Kuroczko wrote: Hello, I see that I can modify system tables even though I have not set allow_system_table_mods... Is this a feature or a bug? allow_system_table_mods allows you to modify the structure, not just the data, i.e. add additional columns to

Re: [GENERAL] DELETE FROM pg_class

2007-09-24 Thread Tom Lane
Simon Riggs [EMAIL PROTECTED] writes: On Mon, 2007-09-24 at 14:44 +0200, Dawid Kuroczko wrote: Hello, I see that I can modify system tables even though I have not set allow_system_table_mods... Is this a feature or a bug? allow_system_table_mods allows you to modify the structure, not just

Re: [GENERAL] DELETE FROM pg_class

2007-09-24 Thread Dawid Kuroczko
On 9/24/07, Tom Lane [EMAIL PROTECTED] wrote: Simon Riggs [EMAIL PROTECTED] writes: On Mon, 2007-09-24 at 14:44 +0200, Dawid Kuroczko wrote: Hello, I see that I can modify system tables even though I have not set allow_system_table_mods... Is this a feature or a bug?