- 17 Jun, 2003 3 commits
-
-
Peter Eisentraut authored
-
Michael Meskes authored
-
Tom Lane authored
siblings.
-
- 16 Jun, 2003 3 commits
-
-
Tom Lane authored
work at all, and neither case behaved sanely for negative intervals.
-
Michael Meskes authored
-
Tom Lane authored
silently resolving them to type TEXT. This is comparable to what we do when faced with UNKNOWN in CASE, UNION, and other contexts. It gets rid of this and related annoyances: select distinct f1, '' from int4_tbl; ERROR: Unable to identify an ordering operator '<' for type unknown This was discussed many moons ago, but no one got round to fixing it.
-
- 15 Jun, 2003 10 commits
-
-
Tom Lane authored
some cases of redundant clauses that were formerly not caught. We have to special-case this because the clauses involved never get attached to the same join restrictlist and so the existing logic does not notice that they are redundant.
-
Tom Lane authored
hopefully a little more useful.
-
Tom Lane authored
both clauses specify the same targets, rather than always using the default ordering operator. This allows 'GROUP BY foo ORDER BY foo DESC' to be done with only one sort step.
-
Tom Lane authored
-
Michael Meskes authored
-
Michael Meskes authored
-
Michael Meskes authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
Lee Kindness
-
- 14 Jun, 2003 4 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
Lee Kindness
-
Bruce Momjian authored
-
- 13 Jun, 2003 4 commits
-
-
Bruce Momjian authored
-
Michael Meskes authored
- Compatibility functions for INFORMIX handling of DECLARE statement.
-
Tom Lane authored
-
Tom Lane authored
-
- 12 Jun, 2003 16 commits
-
-
Tom Lane authored
-
Bruce Momjian authored
-
Tom Lane authored
not a SELECT. We didn't use to allow that, but we do now.
-
Tom Lane authored
on some platforms.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Michael Meskes authored
-
Bruce Momjian authored
Compiles on BCC 5.5 and VC++ 6.0 (with warnings). Karl Waclawek
-
Bruce Momjian authored
-
Bruce Momjian authored
Also quickly added mention that it may be a qualified schema name. Rod Taylor
-
Bruce Momjian authored
Attached is a patch that enhances the output of psql's HTML mode. The output now validates as HTML 4.01 Strict, XHTML 1.0 strict, and XHTML 1.1 (assuming you wrap it in a valid html/body document). It also wraps the output of PGRES_COMMAND_OK if the HTML tag is on, for full compliance: this is why html_escaped_print has to be externalized. Greg Sabino Mullane greg@turnstep.com
-
Bruce Momjian authored
Actually clear the cache in the backend making the alteration. This follows in the footsteps of setval(). Rod Taylor
-
Bruce Momjian authored
Kurt Roeckx Andrew Dunstan
-
Bruce Momjian authored
Back out this patch because it is patched inside a later patch. --------------------------------------------------------------------------- here is a patch that allows CIDR netmasks in pg_hba.conf. It allows two address/mask forms: . address/maskbits, or . address netmask (as now) If the patch is accepted I will submit a documentation patch to cover it. This is submitted by agreement with Kurt Roeckx, who has worked on a patch that covers this and other IPv6 issues.
-
Bruce Momjian authored
vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv --- setup.py~ Tue Mar 19 08:21:14 2002 +++ setup.py Wed May 14 15:10:30 2003 @@ -30,8 +30,8 @@ optional_libs=[ 'libpqdll', 'wsock32', 'advapi32' ] data_files = [ 'libpq.dll' ] else: - include_dirs=['/usr/include/pgsql'] - library_dirs=['usr/lib/pgsql'] + include_dirs=['../../include','../libpq','/usr/include/pgsql'] + library_dirs=['../libpq','/usr/lib/pgsql'] optional_libs=['pq'] data_files = [] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ George Young
-
Bruce Momjian authored
address/mask forms: . address/maskbits, or . address netmask (as now) If the patch is accepted I will submit a documentation patch to cover it. This is submitted by agreement with Kurt Roeckx, who has worked on a patch that covers this and other IPv6 issues. Andrew Dunstan
-