- 04 Jan, 2004 4 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
Problem report on True64 Unix by Nikola Milutinovic.
-
Bruce Momjian authored
-
Tom Lane authored
first time generate an OR indexscan for a two-column index when the WHERE condition is like 'col1 = foo AND (col2 = bar OR col2 = baz)' --- before, the OR had to be on the first column of the index or we'd not notice the possibility of using it. Some progress towards extracting OR indexscans from subclauses of an OR that references multiple relations, too, although this code is #ifdef'd out because it needs more work.
-
- 03 Jan, 2004 1 commit
-
-
Tom Lane authored
-
- 01 Jan, 2004 1 commit
-
-
Tom Lane authored
This ensures stdout is kept in sync with messages on stderr. Per report from Olaf Ferger.
-
- 31 Dec, 2003 1 commit
-
-
Bruce Momjian authored
-
- 30 Dec, 2003 6 commits
-
-
Tom Lane authored
fields: now they are valid whenever the clause is a binary opclause, not only when it is a potential join clause (there is a new boolean field canjoin to signal the latter condition). This lets us avoid recomputing the relid sets over and over while examining indexes. Still more work to do to make this as useful as it could be, because there are places that could use the info but don't have access to the RestrictInfo node.
-
Tom Lane authored
LC_CTYPE settings of a database.
-
Bruce Momjian authored
required.
-
Tom Lane authored
just look for common clauses that can be pulled out of ORs. Per recent discussion, extracting common clauses seems to be the only really useful effect of normalization, and if we do it explicitly then we can avoid cluttering the qual with partially-redundant duplicated expressions, which was an unpleasant side-effect of the old approach.
-
Tom Lane authored
number-of-buckets that exceeds the size we actually plan to allow the hash table to grow to. Per trouble report from Sean Shanny.
-
Tom Lane authored
call. You'd think this would cause some problems, but because of the way hash_create is coded, the only side-effect was creation of a useless memory context for the hashtable.
-
- 29 Dec, 2003 5 commits
-
-
Tom Lane authored
memory contexts belonging to hash tables. Makes the memory stats printout a little more useful.
-
Tom Lane authored
conditions is overkill; set_union() does the job about as well, and much more efficiently. Furthermore this avoids assuming that canonicalize_qual() will check for duplicate clauses at all, which it may not always do.
-
Tom Lane authored
-
Tom Lane authored
showed that for common operator names such as '=', the pallocs done by this routine occupied a surprisingly large fraction of the total time for the parser to process an operator.
-
Michael Meskes authored
-
- 28 Dec, 2003 3 commits
-
-
Tom Lane authored
about whether it is applied before or after eval_const_expressions(). I believe there were some corner cases where the system would fail to recognize that a partial index is applicable because of the previous inconsistency. Store normal rather than 'implicit AND' representations of constraints and index predicates in the catalogs. initdb forced due to representation change of constraints/predicates.
-
Tom Lane authored
could never exceed 30K. Per report from Andreas Pflug.
-
Tom Lane authored
PQexecFinish(). Per report from Andreas Pflug.
-
- 27 Dec, 2003 2 commits
- 26 Dec, 2003 2 commits
-
-
Tom Lane authored
index entries.
-
Michael Meskes authored
-
- 25 Dec, 2003 3 commits
-
-
Bruce Momjian authored
fork/exec'd, in the same mode as the previous patch for backends. Claudio Natoli
-
Bruce Momjian authored
special meaning of these terms in pg_hba.conf. Also changes ugly pg_hba.conf IPv6 netmask of ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff to ::1/128. Andrew Dunstan
-
Bruce Momjian authored
> > needed, and other people in the past asked about it too. > > It is in Oracle, but you aren't exactly on the spot. It should be > > IYYY - 4 digits ('2003') > IYY - 3 digits ('003') > IY - 2 digits ('03') > I - 1 digit ('3') Here is an updated patch that does that. Kurt Roeckx
-
- 24 Dec, 2003 1 commit
-
-
Michael Meskes authored
-
- 23 Dec, 2003 11 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
Patch inspired by original submission from ViSolve.
-
Tom Lane authored
prefix would fail, because the new path did not get propagated to where it needed to be. Note this would fail even with --enable-depend.
-
Tom Lane authored
-
Tom Lane authored
by means of arbitrarily renaming tables the other test depends on.
-
Tom Lane authored
table name conflict against rangefuncs test.
-
Tom Lane authored
the platform template files, instead of doing it directly in configure.in. This seems cleaner, and also opens the door to making the choice be dependent on the compiler being used.
-
Tom Lane authored
that were broken, try to make layout of s_lock.h entries consistent, use HAVE_SPINLOCKS in preference to HAS_TEST_AND_SET everywhere outside s_lock.h itself.
-
Bruce Momjian authored
if supported by the cpu.
-
Bruce Momjian authored
centralization and easier maintanence.
-
Bruce Momjian authored
-