Skip to content
Snippets Groups Projects
Select Git revision
  • benchmark-tools
  • postgres-lambda
  • master default
  • REL9_4_25
  • REL9_5_20
  • REL9_6_16
  • REL_10_11
  • REL_11_6
  • REL_12_1
  • REL_12_0
  • REL_12_RC1
  • REL_12_BETA4
  • REL9_4_24
  • REL9_5_19
  • REL9_6_15
  • REL_10_10
  • REL_11_5
  • REL_12_BETA3
  • REL9_4_23
  • REL9_5_18
  • REL9_6_14
  • REL_10_9
  • REL_11_4
23 results

bootparse.y

  • Heikki Linnakangas's avatar
    15386281
    Put back allow_system_table_mods check in heap_create(). · 15386281
    Heikki Linnakangas authored
    This reverts commit a475c603.
    
    Erik Rijkers reported back in January 2013 that after the patch, if you do
    "pg_dump -t myschema.mytable" to dump a single table, and restore that in
    a database where myschema does not exist, the table is silently created in
    pg_catalog instead. That is because pg_dump uses
    "SET search_path=myschema, pg_catalog" to set schema the table is created
    in. While allow_system_table_mods is not a very elegant solution to this,
    we can't leave it as it is, so for now, revert it back to the way it was
    previously.
    15386281
    History
    Put back allow_system_table_mods check in heap_create().
    Heikki Linnakangas authored
    This reverts commit a475c603.
    
    Erik Rijkers reported back in January 2013 that after the patch, if you do
    "pg_dump -t myschema.mytable" to dump a single table, and restore that in
    a database where myschema does not exist, the table is silently created in
    pg_catalog instead. That is because pg_dump uses
    "SET search_path=myschema, pg_catalog" to set schema the table is created
    in. While allow_system_table_mods is not a very elegant solution to this,
    we can't leave it as it is, so for now, revert it back to the way it was
    previously.