Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-11-05 | Update ports list. | Bruce Momjian | |
2002-11-05 | Update ports list. | Bruce Momjian | |
2002-11-05 | Fix broken markup. | Tom Lane | |
2002-11-05 | Update ports list. | Bruce Momjian | |
2002-11-04 | Update ports list. | Bruce Momjian | |
2002-11-04 | Brand CVS tip as 7.4devel. | Tom Lane | |
2002-11-04 | Remove extraneous semicolons after routine bodies. These don't bother | Tom Lane | |
gcc, but some other compilers don't like 'em. | |||
2002-11-04 | Fix inclusion order, per Andreas. | Tom Lane | |
2002-11-04 | Remove unnecessary inclusion, per Andreas. | Tom Lane | |
2002-11-04 | Remove no-longer-needed inclusion of bootstrap_tokens.h, per patch | Tom Lane | |
from Andreas. | |||
2002-11-04 | Applied two patches from Kris Jurka. | Barry Lind | |
- First fixes a problem with a recent patch allowing setNull on updateable resultsets - Second removed toLower() calls on database object names. Leave it to the caller to correctly pass lower, upper or mixed case. The driver already has methods that the caller can use to determine that postgres stores identifiers in lowercase. (unless the identifier was quoted when created). Modified Files: jdbc/org/postgresql/jdbc1/AbstractJdbc1DatabaseMetaData.java jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java | |||
2002-11-03 | Fix dblink regression test so that it works when repeated: don't | Tom Lane | |
create a second database, just loop back to 'regression'. Patch from Joe Conway 10/22/02. | |||
2002-11-03 | Update FAQ_DEV. | Bruce Momjian | |
2002-11-03 | Stamp beta4. | Bruce Momjian | |
2002-11-03 | This patch adds a couple of extra index entries and removes some | Bruce Momjian | |
out-of-date text about multibyte encoding (which is now always included). Oliver Elphick | |||
2002-11-03 | This patch adds information to the documentation on .pgpass and creates | Bruce Momjian | |
additional index entries for it. Oliver Elphick | |||
2002-11-03 | Use sed rather than perl for reindexdb. | Bruce Momjian | |
2002-11-02 | Fix some misstatements in WAL parameter discussion. | Tom Lane | |
2002-11-02 | Code review for recent patch to allow ALTER TABLE ADD COLUMN when | Tom Lane | |
a child table already has a matching column. Acquire appropriate lock on child table; do the right thing with any CHECK constraints attached to the new parent column. | |||
2002-11-02 | During swap_relfilenodes, swap relation size statistic fields along with | Tom Lane | |
the relfilenode and toast fields. This ensures that the newly-computed statistics will be available on completion of CLUSTER. | |||
2002-11-02 | Remove encoding lookups from grammar stage, push them back to places | Tom Lane | |
where it's safe to do database access. Along the way, fix core dump for 'DEFAULT' parameters to CREATE DATABASE. initdb forced due to change in pg_proc entry. | |||
2002-11-02 | Clean up a few fprintf(stderr)'s that should be elog's. | Tom Lane | |
2002-11-02 | Add: | Bruce Momjian | |
> * Acquire lock on a relation before building a relcache entry for it | |||
2002-11-02 | Update: | Bruce Momjian | |
> o MOVE 0 should not move to end of cursor (Bruce) | |||
2002-11-02 | Add: | Bruce Momjian | |
> * Support statement-level triggers and triggers on columns (Neil) | |||
2002-11-02 | Fix permissions-checking bugs and namespace-search-path bugs in | Tom Lane | |
CONVERSION code. Still need to figure out what to do about inappropriate coding in parsing. | |||
2002-11-02 | Add gcj discussion. | Bruce Momjian | |
2002-11-02 | Re-add Win32 missing files, I think. | Bruce Momjian | |
2002-11-02 | Re-add Win32 files. | Bruce Momjian | |
2002-11-02 | Update port list. | Bruce Momjian | |
2002-11-02 | Updates from Giles Lean. | Tom Lane | |
2002-11-02 | Make it possible to run 'make installcheck' in contrib when building | Tom Lane | |
outside the source tree. | |||
2002-11-02 | Add: | Bruce Momjian | |
> * Allow psql to do table completion for SELECT * FROM schema_part and > table completion for SELECT * FROM schema_name. | |||
2002-11-01 | Fix contrib/rserv to install successfully when built outside source tree. | Tom Lane | |
(Not that it will actually work with 7.3, I fear.) | |||
2002-11-01 | Ooops, forgot to fix contrib regression tests for WARNING/NOTICE change. | Tom Lane | |
2002-11-01 | Need -I. to build outside source tree. | Tom Lane | |
2002-11-01 | Fix incorrect subdir value. | Tom Lane | |
2002-11-01 | Add: | Bruce Momjian | |
> * Have standalone backend read postgresql.conf | |||
2002-11-01 | Arrange to compile flex output files as inclusions into other files | Tom Lane | |
(usually bison output files), not as standalone files. This hack works around flex's insistence on including <stdio.h> before we are able to include postgres.h; postgres.h will already be read before the compiler starts to read the flex output file. Needed for largefile support on some platforms. | |||
2002-11-01 | Ooops, forgot to fix contrib regression tests for WARNING/NOTICE change. | Tom Lane | |
2002-11-01 | Reduce a couple of debugging messages from LOG to DEBUG1 category. | Tom Lane | |
2002-11-01 | Reduce messages associated with shell-type function arguments/results | Tom Lane | |
from WARNING to NOTICE, since they are expected messages in common cases. | |||
2002-11-01 | Update to match expected results on OS X 10.2. | Tom Lane | |
2002-11-01 | After elog(PANIC), exit with abort() not proc_exit(). This allows a | Tom Lane | |
core file to be produced for debugging, and avoids trying to run the normal proc-exit cleanup hooks, which are likely to cause additional problems if the system is hosed. | |||
2002-11-01 | Correct ordering of geometry/freebsd entries, add one for freebsd5. | Tom Lane | |
2002-11-01 | Update for test changes. | Tom Lane | |
2002-11-01 | Avoid malloc(0) when printing a table of no columns. On some platforms | Tom Lane | |
this returns NULL, which confuses the code. | |||
2002-11-01 | Fix some bogus comments. | Tom Lane | |
2002-10-31 | Add missing #include <errno.h>, per gripe from Alessio Bragadini. | Tom Lane | |
2002-10-31 | Update description of timestamp types for 7.3 implementation. | Tom Lane | |