Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-11-24 | Print bit strings as B'...' when INSERT commands are dumped. | Peter Eisentraut | |
2000-11-24 | Make SET SESSION CHARACTERISTICS compliant with SQL 99. Remove redundant, | Peter Eisentraut | |
non-standard clauses. Allow CHARACTERISTICS as unquoted identifier. Merge related reference pages. | |||
2000-11-24 | update list of places to change version numbers; reformat | Peter Eisentraut | |
2000-11-24 | Remove obsolete test suite | Peter Eisentraut | |
2000-11-24 | A catalog cache that never caches isn't much of a cache :-(. Mea culpa. | Tom Lane | |
Thanks to Brian Hirt for pointing out the performance lossage. | |||
2000-11-23 | Ensure that mergejoin plan will be considered for FULL OUTER JOIN even | Tom Lane | |
if enable_mergejoin = OFF. Must do this, because we have no other implementation method for full joins. | |||
2000-11-23 | Set fdstate in fileNameOpenFile. | Vadim B. Mikheev | |
2000-11-22 | Fix output file names for new driver | Peter Eisentraut | |
2000-11-22 | Bit string regression test | Peter Eisentraut | |
from Adriaan Joubert <a.joubert@albourne.com> | |||
2000-11-22 | Fix for bitsubstr when third argument is missing (i.e., -1). | Peter Eisentraut | |
From Adriaan Joubert <a.joubert@albourne.com> | |||
2000-11-22 | Point runtest and runcheck targets at new regression test driver. | Peter Eisentraut | |
2000-11-22 | Recommit socket path fix. It works now. | Bruce Momjian | |
2000-11-22 | Back out socket path until it works. | Bruce Momjian | |
2000-11-22 | Back out socket file path change until it works. | Bruce Momjian | |
2000-11-22 | avoid opening view files. | Hiroshi Inoue | |
2000-11-22 | Allow running without a "schedule" file. This enables you to run tests | Peter Eisentraut | |
standalone, e.g., "./pg_regress int2". | |||
2000-11-22 | Make socket option specify just the directory, not the full path. | Bruce Momjian | |
2000-11-22 | geometry result files for unixware | Peter Eisentraut | |
2000-11-22 | Tweak resultmap documentation, add to README too. | Tom Lane | |
2000-11-21 | Allow for different result files when using GCC versus native compiler. | Peter Eisentraut | |
2000-11-21 | Extend accept/AF_UNIX bug workaround to SCO OpenServer. | Peter Eisentraut | |
2000-11-21 | Refine log/error messages. Print out the errno message, not the number. | Peter Eisentraut | |
Remove timestamps from messages where this would be redundant with the log_timestamp option. | |||
2000-11-21 | Put external declarations into header files. | Peter Eisentraut | |
2000-11-21 | Install the sample pg_ident.conf file into /home/postgres/testversion/data, ↵ | Tom Lane | |
just like pg_hba.conf. | |||
2000-11-21 | Improve comments. | Tom Lane | |
2000-11-21 | Improve comments in pg_hba.conf.sample and the associated SGML | Tom Lane | |
documentation. | |||
2000-11-21 | Don't hide error message from dropdb. | Peter Eisentraut | |
2000-11-21 | misc | Vadim B. Mikheev | |
2000-11-21 | Fix OID bootstraping. | Vadim B. Mikheev | |
2000-11-21 | Adjust opr_sanity.out for small change in OID allocation. | Tom Lane | |
2000-11-21 | Add missing #include <errno.h>. | Tom Lane | |
2000-11-21 | keep relations open until they are no longer needed. | Hiroshi Inoue | |
2000-11-21 | Make oidin/oidout produce and consume unsigned representation of Oid, | Tom Lane | |
rather than just being aliases for int4in/int4out. Give type Oid a full set of comparison operators that do proper unsigned comparison, instead of reusing the int4 comparators. Since pg_dump is now doing unsigned comparisons of OIDs, it is now *necessary* that we play by the rules here. In fact, given that btoidcmp() has been doing unsigned comparison for quite some time, it seems likely that we have index- corruption problems in 7.0 and before once the Oid counter goes past 2G. Fixing these operators is a necessary step before we can think about 8-byte Oid, too. | |||
2000-11-21 | Init ShmemVariableCache in BootStrapXLOG() | Vadim B. Mikheev | |
(should fix OID bootstraping). | |||
2000-11-21 | Simplify definition of pg_tables and pg_views views by making use of | Tom Lane | |
new separate relkind for views (per some discussion back in September). I didn't force initdb, but rules regress test will show differences until you do one. | |||
2000-11-21 | Fix erroneous handling of parameters at SubqueryScan plan nodes, | Tom Lane | |
per bug report from Don Baccus. | |||
2000-11-20 | Fix yacc failures in preproc.y. | Tom Lane | |
2000-11-20 | Silence gcc warnings. | Tom Lane | |
2000-11-20 | No casting to LSN (XLogRecPtr) is required. | Vadim B. Mikheev | |
2000-11-20 | Revise handling of oldstyle/newstyle functions per recent discussions | Tom Lane | |
in pghackers list. Support for oldstyle internal functions is gone (no longer needed, since conversion is complete) and pg_language entry 'internal' now implies newstyle call convention. pg_language entry 'newC' is gone; both old and newstyle dynamically loaded C functions are now called language 'C'. A newstyle function must be identified by an associated info routine. See src/backend/utils/fmgr/README. | |||
2000-11-20 | Enable WAL in config.h, not Makefile.global. | Peter Eisentraut | |
2000-11-20 | Include postgres.h before checking #ifdef XLOG. | Peter Eisentraut | |
2000-11-20 | Add configure checks for strtoll, strtoull (or strto[u]q). Disable | Peter Eisentraut | |
'long long int' portions of ecpg if the type or these functions don't exist. | |||
2000-11-20 | Parser synced. | Michael Meskes | |
2000-11-20 | Encoding patch to Connection by wrobell@posexperts.com.pl | Peter Mount | |
2000-11-20 | Compile WAL by default. | Vadim B. Mikheev | |
2000-11-20 | Eliminate unused-variable warning. | Tom Lane | |
2000-11-19 | Fix typo. | Tom Lane | |
2000-11-19 | Update README with proposed new method for determining calling convention | Tom Lane | |
of user-defined functions (forget 'C' vs 'newC', instead require an info function to be present for new-style functions). Also update some other out-of-date commentary. | |||
2000-11-18 | Polish error messages, help output, give marginal clue about command line | Peter Eisentraut | |
option conventions. (E.g., "pg_passwd -?" should not write to a file named "-?".) |