- 30 Nov, 2004 4 commits
-
-
Bruce Momjian authored
> * Prevent INET cast to CIDR from droping netmask, SELECT '1.1.1.1'::inet::cidr
-
Bruce Momjian authored
> o Allow COPY FROM ... CVS to interpret newlines and carriage > returns in data? > > This would require major refactoring of the copy source code.
-
Neil Conway authored
-
Bruce Momjian authored
> * Improve NLS maintenace of libpgport messages linked onto applications >
-
- 29 Nov, 2004 8 commits
-
-
Tom Lane authored
so that they will be translatable. Give messages some semblance of conformance to the style guide.
-
Bruce Momjian authored
< > * Allow cross-compiling by generating the zic database on the target system
-
Tom Lane authored
useful than just \'failed\' when there's a problem. Per gripe from Chris Albertson. In an unrelated change, use VACUUM FULL; VACUUM FREEZE; rather than a single VACUUM FULL FREEZE command, to respond to my worries of a couple days ago about the reliability of doing this in one go.
-
Bruce Momjian authored
Devrim GUNDUZ
-
Bruce Momjian authored
/* * Some compilers with throw a warning knowing this test can never be * true because off_t can't exceed the compared maximum. */ if (th->fileLen > MAX_TAR_MEMBER_FILELEN) die_horribly(AH, modulename, "archive member too large for tar format\n");
-
Bruce Momjian authored
> * Auto-vacuum > o Move into the backend code > o Scan the buffer cache to find free space or use background writer > o Use free-space map information to guide refilling
-
Bruce Momjian authored
Euler Taveira de Oliveira
-
Bruce Momjian authored
initdb, and display in a path-native way.
-
- 28 Nov, 2004 4 commits
-
-
Tom Lane authored
-
Tom Lane authored
prevents problems when the DECLARE is in a portal and is executed repeatedly, as is possible in v3 protocol. Per analysis by Oliver Jowett, though I didn't use his patch exactly.
-
Bruce Momjian authored
< information, either by name or offset from UTC > information, either zone name or offset from UTC > > If the TIMESTAMP value is stored with a time zone name, interval > computations should adjust based on the time zone rules, e.g. adding > 24 hours to a timestamp would yield a different result from adding one > day. >
-
Bruce Momjian authored
-
- 27 Nov, 2004 8 commits
-
-
Peter Eisentraut authored
who use it scan the relevant source files for their own catalog. It creates a bit of duplicate work for translators, but it gets the job done for now.
-
Peter Eisentraut authored
-
Peter Eisentraut authored
by Troels Arvin, Simon Riggs, Elein Mustain Make spelling of SQL standard names uniform.
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
integration. It is much better to create a word list of unstemmed words than stemmed ones. Chris K-L
-
- 26 Nov, 2004 1 commit
-
-
Tom Lane authored
-
- 24 Nov, 2004 6 commits
-
-
Tom Lane authored
8.4.1). This corrects some curious regex bugs, though not the greediness issue I was hoping to find a solution for :-(
-
Tom Lane authored
error conditions during regexp compile, but not during regexp execution; any sort of "can't happen" errors would be treated as no-match instead of being reported as they should be. Noticed while trying to duplicate a reported Tcl bug.
-
Tom Lane authored
to be processed by GUC before InitPostgres, because any required lookup of the encoding conversion function has to be done during InitializeClientEncoding. So, I broke this last week by moving GUC processing to after InitPostgres :-(. What we can do as a compromise is process non-SUSET variables during command line scanning (the same as before), and postpone the processing of only SUSET variables. None of the SUSET variables need to be set before InitPostgres.
-
Tom Lane authored
Per report from Mark Kirkwood.
-
Neil Conway authored
include "\s" in \? output when readline is enabled, but that commit supressed "\s" whether readline was enabled or not.
-
Neil Conway authored
a home-brewed combination of assertions that boiled down to the same thing.
-
- 23 Nov, 2004 6 commits
-
-
Neil Conway authored
has been defined. Previously, pgcrypto would compile but would be unusable.
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Tom Lane authored
data returned from Perl. Consolidate multiple bits of code to convert a Perl hash to a tuple, and drive the conversion off the keys present in the hash rather than the tuple column names, so we detect error if the hash contains keys it shouldn't. (This means keys not in the hash will silently default to NULL, which seems ok to me.) Fix a bunch of reference-count leaks too.
-
- 22 Nov, 2004 3 commits
-
-
Tom Lane authored
covers return value processing, but that was the most broken stuff...
-
Tom Lane authored
Get rid of static variables for SETOF result, don't crash when called from non-FROM context, eliminate dead code, etc.
-
Neil Conway authored
-