- 30 Aug, 2006 1 commit
-
-
Tom Lane authored
and other special flags on Windows. May fix intermittent 'Permission denied' errors. Magnus Hagander
-
- 29 Aug, 2006 16 commits
-
-
Tom Lane authored
the pager before reporting the error.
-
Tom Lane authored
queries via a cursor, fetching a limited number of rows at a time and therefore not risking exhausting memory. A disadvantage of the scheme is that 'aligned' output mode will align each group of rows independently leading to odd-looking output, but all the other output formats work reasonably well. Chris Mair, with some additional hacking by moi.
-
Bruce Momjian authored
Fix printing of NULL bind parameters, use "NULL".
-
Bruce Momjian authored
> o Turn on by default
-
Teodor Sigaev authored
-
Tom Lane authored
existing for backend GUC variables, and use this to eliminate repeated fetching/parsing of psql variables in psql's inner loops. In a trivial test with lots of 'select 1;' commands, psql's CPU time went down almost 10%, although of course the effect on total elapsed time was much less. Per discussion about how to ensure the upcoming FETCH_COUNT patch doesn't cost any performance when not being used.
-
Teodor Sigaev authored
-
Teodor Sigaev authored
-
Teodor Sigaev authored
-
Teodor Sigaev authored
-
Michael Meskes authored
-
Michael Meskes authored
Changed file paths in expected files too.
-
Michael Meskes authored
Streamlined connection name parsing. Added Joachim's patch to shorten paths before diffing.
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Bruce Momjian authored
optionally bind. I re-added the "statement:" label so people will understand why the line is being printed (it is log_*statement behavior). Use single quotes for bind values, instead of double quotes, and double literal single quotes in bind values (and document that). I also made use of the DETAIL line to have much cleaner output.
-
- 28 Aug, 2006 7 commits
-
-
Bruce Momjian authored
> o Allow DEFERRABLE and end-of-statement UNIQUE constraints? > > This would allow UPDATE tab SET col = col + 1 to work if col has > a unique index. Currently, uniqueness checks are done while the > command is being executed, rather than at the end of the statement > or transaction. > < < * Allow DEFERRABLE and end-of-statement UNIQUE constraints? < < This would allow UPDATE tab SET col = col + 1 to work if col has < a unique index. Currently, uniqueness checks are done while the < command is being executed, rather than at the end of the statement < or transaction.
-
Bruce Momjian authored
< * Allow DEFERRABLE UNIQUE constraints? > * Allow DEFERRABLE and end-of-statement UNIQUE constraints? > > This would allow UPDATE tab SET col = col + 1 to work if col has > a unique index. Currently, uniqueness checks are done while the > command is being executed, rather than at the end of the statement > or transaction. >
-
Tom Lane authored
pgstat_bestart() has been called; else any lock-block occurring during InitPostgres() is disastrous. I believe this explains recent wasp regression failure; at least it explains the crash I got while trying to duplicate the problem. I also made pgstat_report_activity() safe against the same scenario, just in case. The report_waiting hazard was created by my patch of 19-Aug to include waiting status in pg_stat_activity.
-
Tom Lane authored
builds all the files needed for its regression tests, but the tests themselves fail because of diffs in the #line directives output by ecpg itself. Not sure what to do about that.
-
Tom Lane authored
trivial if it contains either Vars referencing the corresponding subplan columns, or Consts equaling the corresponding subplan columns. This lets the planner eliminate the SubqueryScan in some cases generated by generate_setop_tlist().
-
Peter Eisentraut authored
Threshold and scale factor are cut in half for more aggressive behavior.
- 27 Aug, 2006 6 commits
-
-
Tom Lane authored
Fix all the standard PLs to be able to return tuples from FOO_RETURNING statements as well as utility statements that return tuples. Also, fix oversight that SPI_processed wasn't set for a utility statement returning tuples. Per recent discussion.
-
Tom Lane authored
HeapTupleSatisfiesItself without doing LockBuffer first. This code is a bit fragile, but AFAICS it's not actually broken.
-
Tom Lane authored
locks that would conflict with a specified lock request, without actually trying to get that lock. Use this instead of the former ad hoc method of doing the first wait step in CREATE INDEX CONCURRENTLY. Fixes problem with undetected deadlock and in many cases will allow the index creation to proceed sooner than it otherwise could've. Per discussion with Greg Stark.
-
Tom Lane authored
Needed because lock.c is now going to use the same type of list.
-
Michael Meskes authored
- Fixed a memory leak/segfault in unsuccessful connection. - Some changes to test files.
-
Tom Lane authored
Per discussion with Martin Atukunda.
-
- 26 Aug, 2006 1 commit
-
-
Michael Meskes authored
-
- 25 Aug, 2006 6 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
< > * Implement SQL:2003 window functions
-
Bruce Momjian authored
-
Teodor Sigaev authored
order is changed.
-
Tom Lane authored
blocking concurrent writes to the table. Greg Stark, with a little help from Tom Lane.
-
- 24 Aug, 2006 3 commits
-
-
Teodor Sigaev authored
Fix compare bug for tsvector: problem was in aligment. Per Stefan Kaltenbrunner <stefan@kaltenbrunner.cc> and Phil Frost <indigo@bitglue.com>
-
Bruce Momjian authored
> * Allow inlining of set-returning functions
-
Michael Meskes authored
-