- 01 Dec, 2003 16 commits
-
-
Bruce Momjian authored
\lo_export LOBOID FILE \lo_import FILE [COMMENT] \lo_list \lo_unlink LOBOID large object operations Instead of not saying anything about what arguments are required. Christopher Kings-Lynne
-
Bruce Momjian authored
Claudio Natoli
-
Bruce Momjian authored
< * Change factorial to return a numeric > * -Change factorial to return a numeric (Gavin) 258c258 < * Allow psql \du to show groups, and add \dg for groups > * -Allow psql \du to show groups, and add \dg for groups
-
Bruce Momjian authored
\du and a \dg command to psql. It's against 7.4beta5. Markus Bertheau <twanger@bluetwanger.de>
-
Tom Lane authored
on 64-bit Solaris. Use a non-system-dependent datatype for UsedShmemSegID, namely unsigned long (which we were already assuming could hold a shmem key anyway, cf RecordSharedMemoryInLockFile).
-
Bruce Momjian authored
comments in the psql code. This doesn't make any functional change, so feel free to save it for 7.5 Neil Conway
-
Bruce Momjian authored
definitions use pretty printing. It does: * Pretty index predicates * Pretty rule definitions * Uppercases PRIMARY KEY and UNIQUE to be consistent with CHECK and FOREIGN KEY * View rules are improved to match table rules: Christopher Kings-Lynne
-
Bruce Momjian authored
proposal for eventually deprecating OIDs on user tables that I posted earlier to pgsql-hackers. pg_dump now always specifies WITH OIDS or WITHOUT OIDS when dumping a table. The documentation has been updated. Neil Conway
-
Bruce Momjian authored
method control structure, or a table of control structures. . Use type LOCKMASK where an int is not a counter. . Get rid of INVALID_TABLEID, use INVALID_LOCKMETHOD instead. . Use INVALID_LOCKMETHOD instead of (LOCKMETHOD) NULL, because LOCKMETHOD is not a pointer. . Define and use macro LockMethodIsValid. . Rename LOCKMETHOD to LOCKMETHODID. . Remove global variable LongTermTableId in lmgr.c, because it is never used. . Make LockTableId static in lmgr.c, because it is used nowhere else. Why not remove it and use DEFAULT_LOCKMETHOD? . Rename the lock method control structure from LOCKMETHODTABLE to LockMethodData. Introduce a pointer type named LockMethod. . Remove elog(FATAL) after InitLockTable() call in CreateSharedMemoryAndSemaphores(), because if something goes wrong, there is elog(FATAL) in LockMethodTableInit(), and if this doesn't help, an elog(ERROR) in InitLockTable() is promoted to FATAL. . Make InitLockTable() void, because its only caller does not use its return value any more. . Rename variables in lock.c to avoid statements like LockMethodTable[NumLockMethods] = lockMethodTable; lockMethodTable = LockMethodTable[lockmethod]; . Change LOCKMETHODID type to uint16 to fit into struct LOCKTAG. . Remove static variables BITS_OFF and BITS_ON from lock.c, because I agree to this doubt: * XXX is a fetch from a static array really faster than a shift? . Define and use macros LOCKBIT_ON/OFF. Manfred Koizar
-
Bruce Momjian authored
-
Bruce Momjian authored
to note: 1) arttype is numeric. I thought this was the best way of allowing arbitarily large factorials, even though factorial(2^63) is a large number. Happy to change to integers if this is overkill. 2) since we're accepting numeric arguments, the patch tests for floats. If a numeric is passed with non-zero decimal portion, an error is raised since (from memory) they are undefined. Gavin Sherry
-
Tom Lane authored
cnliou.
-
Tom Lane authored
per gripe from Joe Sunday.
-
Tom Lane authored
-
Tom Lane authored
since there is no need to worry about damaged pages when we are going to overwrite them anyway from the WAL. Per recent discussion.
-
Bruce Momjian authored
while you can actually set them with SET. This applied patch changes the wording from "Show" to "Set".
-
- 30 Nov, 2003 14 commits
-
-
Joe Conway authored
octal escape all octets outside the range 0x20 to 0x7e. This fixes the problem pointed out by Sergey Yatskevich here: http://archives.postgresql.org/pgsql-bugs/2003-11/msg00140.php
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
> * Have pg_ctl look at PGHOST in case it is a socket directory
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
documentation; this patch removes it. Neil Conway
-
Bruce Momjian authored
> * Make LENGTH() of CHAR() not count trailing spaces >
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
< * Allow clients to query WITH HOLD cursors and prepared statements > * Allow clients to query a list of WITH HOLD cursors and prepared statements
-
Bruce Momjian authored
< manuals (Rory) > manuals 496c496 < * Jan is Jan Wieck <JanWieck@Yahoo.com> of PeerDirect Corp. > * Jan is Jan Wieck <JanWieck@Yahoo.com> of Afilias, Inc.
-
- 29 Nov, 2003 3 commits
-
-
PostgreSQL Daemon authored
make sure the $Id tags are converted to $PostgreSQL as well ...
-
Tom Lane authored
standalone backend --- the CVS revision number of postgres.c is not real useful to anyone.
-
PostgreSQL Daemon authored
$Header: -> $PostgreSQL Changes ...
-
- 28 Nov, 2003 6 commits
-
-
PostgreSQL Daemon authored
testing $PostgreSQL$ tag
-
Bruce Momjian authored
Daniel Convissor
-
Bruce Momjian authored
Viktor Vislobokov
-
Bruce Momjian authored
-
Teodor Sigaev authored
-
Joe Conway authored
persistent_conn was left dangling after a disconnect in the unnamed connection case, causing a subsequent disconnect to crash the backend.
-
- 27 Nov, 2003 1 commit
-
-
Peter Eisentraut authored
--with-openssl options. This creates too much risk to pick up the wrong directory accidentally (for example when there are lib64 directories), and does not really help much with contemporary installation layouts.
-