| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Vacuum parameter fix. | Bruce Momjian | 1998-02-03 | 1 | -2/+2 |
| | | |||||
| * | Subselects with =, >, etc. | Bruce Momjian | 1998-02-03 | 1 | -2/+4 |
| | | | | | Cleanup for vacuum help, manual page, and error message | ||||
| * | Supress call to tzset() in reset_timezone() if a new time zone has never | Thomas G. Lockhart | 1998-02-03 | 1 | -48/+20 |
| | | | | | | been set in the session. General cleanup of timezone support code. | ||||
| * | Inline fastgetattr and others so data access does not use function | Bruce Momjian | 1998-01-31 | 5 | -26/+26 |
| | | | | | calls. | ||||
| * | getpid/pid cleanup | Bruce Momjian | 1998-01-25 | 2 | -12/+8 |
| | | |||||
| * | Add Var.varlevelup to code. More parser cleanup. | Bruce Momjian | 1998-01-20 | 1 | -1/+3 |
| | | |||||
| * | New pg_attribute.atttypmod for type-specific information like | Bruce Momjian | 1998-01-16 | 3 | -8/+6 |
| | | | | | | | | | | | | varchar length. Cleans up code so attlen is always length. Removed varchar() hack added earlier. Will fix bug in selecting varchar() fields, and varchar() can be variable length. | ||||
| * | Thank god for searchable mail archives. | PostgreSQL Daemon | 1998-01-15 | 4 | -84/+43 |
| | | | | | | | | | | Patch by: wieck@sapserv.debis.de (Jan Wieck) One of the design rules of PostgreSQL is extensibility. And to follow this rule means (at least for me) that there should not only be a builtin PL. Instead I would prefer a defined interface for PL implemetations. | ||||
| * | Fix CLUSTER. | Bruce Momjian | 1998-01-10 | 1 | -1/+4 |
| | | |||||
| * | Allow varchar() to only store needed bytes. Remove PALLOC,PALLOCTYPE,PFREE. ↵ | Bruce Momjian | 1998-01-07 | 1 | -7/+7 |
| | | | | | Clean up use of VARDATA. | ||||
| * | Move variable.c to commands/ and aclchk.c to catalog/. | Bruce Momjian | 1998-01-05 | 2 | -2/+615 |
| | | |||||
| * | Change some ABORTS to ERROR. Add line number when COPY Failure. | Bruce Momjian | 1998-01-05 | 17 | -224/+206 |
| | | |||||
| * | Change elog(WARN) to elog(ERROR) and elog(ABORT). | Bruce Momjian | 1998-01-05 | 17 | -206/+206 |
| | | |||||
| * | Slightly delayed patches from Todd...damn holidays :) | Marc G. Fournier | 1997-12-30 | 1 | -7/+31 |
| | | | | | | | | | | | | | o A new patch that contains the following changes: -- The pg_pwd file is now cached in the postmaster's memory. -- pg_pwd is reloaded when the postmaster detects a flag file creat()'ed by a backend. -- qsort() is used to sort loaded password entries, and bsearch() is is used to find entries in the pg_pwd cache. -- backends now copy the pg_user relation to pg_pwd.pid, and then rename the temp file to be pg_pwd. -- The delimiter for pg_pwd has been changed to a tab character. | ||||
| * | Change some mallocs to palloc. | Bruce Momjian | 1997-12-29 | 1 | -3/+3 |
| | | |||||
| * | Fix for select 1=1 or 2=2, select 1=1 and 2=2, and select sum(2+2). | Bruce Momjian | 1997-12-22 | 1 | -4/+2 |
| | | |||||
| * | Major cleanout of PORTNAME variables from Makefiles...bound to screw up | Marc G. Fournier | 1997-12-20 | 1 | -5/+1 |
| | | | | | some of the ports... | ||||
| * | More cleanups. I can now compile without PORTNAME being defined n | Marc G. Fournier | 1997-12-19 | 1 | -2/+2 |
| | | | | | | | | | | Makefile.global. End result, if all goes well, should allow for much easier porting, since there will no longer be a concept of a "port". Most, if not everything, *should* be determined by configure, or by the compiler itself. Still work to be done though :) | ||||
| * | Makefile cleaned up | Marc G. Fournier | 1997-12-17 | 3 | -8/+12 |
| | | | | | | | | | | async.c: #include <port-protos.h> surrounded by an #ifdef HAVE_STRDUP vacuum.c: #include <port-protos.h> commented out...can someone comment as to why it was included, as it doesn't seem to have any effect under FreeBSD so far...would like some sort of #ifdef wrapper like async.c if possible | ||||
| * | Make password null on startup. | Bruce Momjian | 1997-12-12 | 1 | -8/+28 |
| | | |||||
| * | Rename pg_plan and pg_eval to be more meaningful. | Bruce Momjian | 1997-12-11 | 3 | -12/+12 |
| | | |||||
| * | Major code cleanup following the pg_password insertion... | Marc G. Fournier | 1997-12-09 | 1 | -1/+0 |
| | | | | | | ...malloc/free -> palloc/pfree ...fopen/fclose -> AllocateFile/FreeFile | ||||
| * | Add VARHDRSZ where needed. Many places just used 4. | Bruce Momjian | 1997-12-06 | 2 | -3/+3 |
| | | |||||
| * | Fix tolower loops to go in proper direction for cache. | Bruce Momjian | 1997-12-05 | 2 | -3/+3 |
| | | |||||
| * | Change Constraint structure name from ConstraintDef to Constraint. | Thomas G. Lockhart | 1997-12-04 | 1 | -11/+9 |
| | | | | | | Change reference to field inside to be compatible with new definition as a "node" structure rather than a specialty structure. | ||||
| * | Missed a few files from Todd's patch...oops :) | Marc G. Fournier | 1997-12-04 | 1 | -0/+379 |
| | | |||||
| * | From: todd brandys <brandys@eng3.hep.uiuc.edu> | Marc G. Fournier | 1997-12-04 | 1 | -2/+2 |
| | | | | | | An extension to the code to allow for a pg_password authentication database that is *seperate* from the system password file | ||||
| * | Rename heap_destroyr to heap_destroy, heap_destroy to heap_destroy_with_catalog. | Bruce Momjian | 1997-11-28 | 5 | -14/+14 |
| | | |||||
| * | Rename heap_create to heap_create_and_catatlog, rename heap_creatr to ↵ | Bruce Momjian | 1997-11-28 | 3 | -10/+11 |
| | | | | | heap_create(). | ||||
| * | Re-order args for TypeCreate() to be clearer. | Bruce Momjian | 1997-11-26 | 1 | -3/+3 |
| | | |||||
| * | Break parser functions into smaller files, group together. | Bruce Momjian | 1997-11-25 | 6 | -15/+16 |
| | | |||||
| * | Move dbcommands.c to commands/. It should not be in the parser directory. | Bruce Momjian | 1997-11-24 | 1 | -2/+2 |
| | | |||||
| * | Move dbcommands.c to commands/. It should not be in the parser directory. | Bruce Momjian | 1997-11-24 | 2 | -2/+341 |
| | | |||||
| * | Archive cleanups. | Bruce Momjian | 1997-11-21 | 1 | -2/+1 |
| | | |||||
| * | Remove unused files. | Bruce Momjian | 1997-11-21 | 1 | -176/+0 |
| | | |||||
| * | Remove archive stuff. | Bruce Momjian | 1997-11-21 | 6 | -258/+18 |
| | | |||||
| * | Remove archive stuff. | Bruce Momjian | 1997-11-21 | 1 | -2/+2 |
| | | |||||
| * | Remove all time travel stuff. Small parser cleanup. | Bruce Momjian | 1997-11-20 | 11 | -44/+43 |
| | | |||||
| * | Remove 16 char limit on system table/index names. Rename system indexes. | Bruce Momjian | 1997-11-17 | 1 | -14/+2 |
| | | |||||
| * | Remove NOT_USED for Massimo. | Bruce Momjian | 1997-11-05 | 1 | -3/+3 |
| | | |||||
| * | Good Bye, Time Travel! | Vadim B. Mikheev | 1997-11-02 | 1 | -50/+43 |
| | | |||||
| * | Fix for compile warning, from Ernst Molitor. | Bruce Momjian | 1997-10-30 | 1 | -2/+2 |
| | | |||||
| * | Now we are able to CREATE PROCEDURAL LANGUAGE (Thanks, Jan). | Vadim B. Mikheev | 1997-10-28 | 4 | -40/+334 |
| | | |||||
| * | Fix binary cursors broken by MOVE implementation. | Vadim B. Mikheev | 1997-10-27 | 1 | -9/+20 |
| | | | | | (Thanks to Bruce for finding what caused problem). | ||||
| * | Rename strNcpy to StrNCpy, and change third parameter. | Bruce Momjian | 1997-10-25 | 3 | -6/+6 |
| | | |||||
| * | Fix \ handling | Vadim B. Mikheev | 1997-10-02 | 1 | -2/+19 |
| | | |||||
| * | STATEMENT triggers are not implemented - elog (WARN). | Vadim B. Mikheev | 1997-09-30 | 1 | -0/+3 |
| | | |||||
| * | MOVE implementation. | Vadim B. Mikheev | 1997-09-29 | 1 | -5/+7 |
| | | |||||
| * | Blowaway relation buffers from buffer pool before truncation. | Vadim B. Mikheev | 1997-09-22 | 1 | -1/+10 |
| | | |||||
| * | Fix up elog warning messages. | Thomas G. Lockhart | 1997-09-20 | 1 | -3/+3 |
| | | |||||
