[HACKERS] Why restore_command is called for existing files in pg_xlog?

2017-06-02 Thread Alexander Kukushkin
le to change this behavior somehow? First look into pg_xlog and only if file is missing or "corrupted" call restore_command. Regards, --- Alexander Kukushkin

Re: [HACKERS] Report search_path value back to the client.

2015-03-02 Thread Alexander Kukushkin
VSearchPath }, {NULL}, }; We could possibly alleviate problem #1 by changing the behavior of guc.c > so it doesn't report every single transition of flagged variables, but > only (say) once just before ReadyForQuery if the variable changed in > the just-finished command. That's not exactly a one-line fix though. > Probably for some variables this really make sense. Inside stored procedures any of GUC_REPORT variables can be changed the same way as search_path (thousands of times), but not all of these variables directly relate to the application visible behaviour. Regards, Alexander Kukushkin

[HACKERS] Report search_path value back to the client.

2014-12-02 Thread Alexander Kukushkin
h order for names that are not schema-qualified."), NULL, - GUC_LIST_INPUT | GUC_LIST_QUOTE + GUC_LIST_INPUT | GUC_LIST_QUOTE | GUC_REPORT }, &namespace_search_path, "\"$user\",public", What do you think? Regards, -- Alexander Kukushkin