Re: [PATCHES] [BUGS] BUG #1148: server restarts depending on stats options

2004-05-07 Thread Bruce Momjian
Tom Lane wrote: > Bruce Momjian <[EMAIL PROTECTED]> writes: > > Thanks: > > > errmsg("cannot enable parameter when \"log_statement_stats\" is true."))); > > errmsg("cannot enable \"log_statement_stats\" when \"log_parser_stats\",\n" > > "\"log_planner_stats\", or \"log_executor_sta

Re: [PATCHES] [BUGS] BUG #1148: server restarts depending on stats options

2004-05-07 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > Thanks: > errmsg("cannot enable parameter when \"log_statement_stats\" is true."))); > errmsg("cannot enable \"log_statement_stats\" when \"log_parser_stats\",\n" > "\"log_planner_stats\", or \"log_executor_stats\" is true."))); Still

Re: [PATCHES] [BUGS] BUG #1148: server restarts depending on stats options

2004-05-07 Thread Bruce Momjian
Peter Eisentraut wrote: > Bruce Momjian wrote: > > I have applied the attached patch to fix this problem. Sample output > > is: > > > > test=> set log_statement_stats = true; > > SET > > test=> set log_parser_stats = true; > > ERROR: Can not enable parameter when "log_statement_st

Re: [PATCHES] [BUGS] BUG #1148: server restarts depending on stats options

2004-05-07 Thread Peter Eisentraut
Bruce Momjian wrote: > I have applied the attached patch to fix this problem. Sample output > is: > > test=> set log_statement_stats = true; > SET > test=> set log_parser_stats = true; > ERROR: Can not enable parameter when "log_statement_stats" is true. According to mess

Re: [PATCHES] [BUGS] BUG #1148: server restarts depending on stats options

2004-05-06 Thread Bruce Momjian
I have applied the attached patch to fix this problem. Sample output is: test=> set log_statement_stats = true; SET test=> set log_parser_stats = true; ERROR: Can not enable parameter when "log_statement_stats" is true. test=> begin; BEGIN