summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2001-02-09When updating a tuple containing compressed-in-line fields, do notTom Lane
decompress the existing fields unnecessarily.
2001-02-09Add -g as synonmym for --globals-only in pg_dumpall. Add info aboutBruce Momjian
-c,--clean option to manual page.
2001-02-09I have deleted the include of termios.h in include/port/qnx4.h.Bruce Momjian
Then I recompiled pgsql and I have compiled a program with ecpg. I have removed the termios.h, and the ECHO hack. Thanks Maurizio
2001-02-09Change SELECT to not trigger "BEGIN" in not autocommit mode.Hiroshi Inoue
2001-02-09plpgsql's private copy of xlateSqlType was out of sync. Again. ThisTom Lane
is clearly not maintainable, so dike it out in favor of calling the real version in the backend's gram.y.
2001-02-09Remove no-longer-needed mklang script; now superseded by createlang.Tom Lane
2001-02-09EXECUTE of a SELECT ... INTO now draws a 'not implemented' error,Tom Lane
rather than executing the INTO clause with non-plpgsql semantics as it was doing for the last few weeks/months. This keeps our options open for making it do the right plpgsql-ish thing in future without creating a backwards compatibility problem. There is no loss of functionality since people can get the same behavior with CREATE TABLE AS.
2001-02-08Make -w the default for shut down, add -W option to specify no wait.Peter Eisentraut
Add -l option to name log file. Set umask to 077. Proper file descriptor redirection to allow postmaster to detach from shell's process group. Add -s option to turn off informational messages.
2001-02-08Fix a misuse of 'char *' declaration.Hiroshi Inoue
2001-02-08When launching a child backend, take care to close file descriptors forTom Lane
any other client connections that may exist (which would only happen if another client is currently in the authentication cycle). This avoids wastage of open descriptors in a child. It might also explain peculiar behaviors like not closing connections when expected, since the kernel will probably not signal EOF as long as some other backend is randomly holding open a reference to the connection, even if the client went away long since ...
2001-02-07FixBTree flag still exists and may be used to turnVadim B. Mikheev
runtime recovery OFF.
2001-02-07Runtime btree recovery is now ON by default.Vadim B. Mikheev
2001-02-07Macro for btree runtime fix.Vadim B. Mikheev
2001-02-07Repair postmaster memory leakage during password authentication.Tom Lane
2001-02-07Redo pgaccess' queries about views so that they will work in both 7.1Tom Lane
and prior releases --- rely on pg_views view instead of direct access to pg_class and pg_rewrite.
2001-02-07Not sure why this work script was in the repository ... but it doesn'tTom Lane
belong ...
2001-02-07Use explicit path to libpgtcl.so, instead of relying on LD_LIBRARY_PATHTom Lane
or local equivalent. Also, honor --with-pgport configure option for default port number, and allow PGPORT environment variable to override this.
2001-02-07Make DEF_PGPORT available to Makefiles, so it can be substituted intoTom Lane
scripts like pgaccess.
2001-02-07Actually, it looks like DEF_PGPORT belongs over in config.h.win32 forTom Lane
the Windows build...
2001-02-07Remove broken (and unnecessary) definition of DEF_PGPORT.Tom Lane
2001-02-07Only pass the -L* portions of LDFLAGS to the Python build environment.Peter Eisentraut
Other flags can have unpredictable effects when Python uses different commands to build than we do.
2001-02-07Need to specify DYNAMIC_PATH flag to shl_load, else HPUX's dld will notTom Lane
honor library search path that we so carefully installed into the executable ...
2001-02-07Some updates prior to retrieving a fresh cvs copy:Peter Mount
Tue Feb 06 19:00:00 GMT 2001 peter@retep.org.uk - Completed first two TestCase's for the test suite. JUnit is now recognised by ant.
2001-02-06If the first argument is --version or --help, skip the root check.Peter Eisentraut
2001-02-06PageAddItem in overwrite mode: must *NOT* check itemid' flag ifVadim B. Mikheev
OffsetNumber == MaxOffsetNumber + 1 - there may be garbage there!
2001-02-06Improved version handling introduced by Dave Page.Hiroshi Inoue
The driver version is 07.01.0002 now. 1) initialized pg_version by DSN's protocol info so that we could always use pg_version info once a connection is established (pg_version() didn't exist before 6.4). PROTOCOL_XX() macros are removed(except from connection.[ch]). 2) provided a few macros to encapsulate connection's version info and replaced existent comparison stuff by those macros. 3) change SQLTables() so that 7.1 servers could show views. In addtion, the following patch from Dave Page is applied. This patch fixes a bug in SQLGetInfo for SQL_DBMS_VER which corrupted the driver version string. The driver version number has also been incremented to 07.01.0002. Regards, Dave. <<odbc.diff>>
2001-02-06Now that I look at it, PQoidValue() ain't quite right either.Tom Lane
2001-02-06Repair PQoidStatus() bug reported by darcy@druid.net.Tom Lane
2001-02-06Out-of-bounds memory allocation request sizes should be treated as justTom Lane
elog(ERROR) not an Assert trap, since we've downgraded out-of-memory to elog(ERROR) not a fatal error. Also, change the hard boundary from 256Mb to 1Gb, just so that anyone who's actually got that much memory to spare can play with TOAST objects approaching a gigabyte.
2001-02-05Dump/display 'timestamp' as 'timestamp with time zone', to make room for aPeter Eisentraut
future 'timestamp without time zone', which SQL claims is equivalent to plain 'timestamp'.
2001-02-04Check for -lresolv.Peter Eisentraut
2001-02-04Pass LDFLAGS along with LIBS to the Python build stuff, especially to pickPeter Eisentraut
up -L options.
2001-02-03Fix inappropriate attempt to push down qual clauses into a view thatTom Lane
has UNION/INTERSECT/EXCEPT operations. Per bug report from Ferrier.
2001-02-03Use elog() instead of exit() for fatal scanner errors.Peter Eisentraut
2001-02-02Runtime tree recovery is implemented, just testing is left -:)Vadim B. Mikheev
2001-02-02Apply patches for QNX from MaurizioBruce Momjian
2001-01-31Applied two bug fixes by Christof Petig.Michael Meskes
2001-01-31Wed Jan 31 08:46:00 GMT 2001 peter@retep.org.ukPeter Mount
- Some minor additions to Statement to make our own extensions more portable. - Statement.close() will now call ResultSet.close() rather than just dissasociating with it.
2001-01-31Tue Jan 30 22:24:00 GMT 2001 peter@retep.org.ukPeter Mount
- Fixed bug where Statement.setMaxRows() was a global setting. Now limited to just itself. - Changed LargeObject.read(byte[],int,int) to return the actual number of bytes read (used to be void). - LargeObject now supports InputStream's! - PreparedStatement.setBinaryStream() now works! - ResultSet.getBinaryStream() now returns an InputStream that doesn't copy the blob into memory first! - Connection.isClosed() now tests to see if the connection is still alive rather than if it thinks it's alive.
2001-01-31Couple additional functions to fix tree at runtime.Vadim B. Mikheev
Need in one more function to handle "my bits moved..." case. FixBTree is still FALSE.
2001-01-29Call _bt_fixroot() from _bt_insertonpg.Vadim B. Mikheev
2001-01-29Clean up handling of tuple descriptors so that result-tuple descriptorsTom Lane
allocated by plan nodes are not leaked at end of query. This doesn't really matter for normal queries, but it sure does for queries invoked repetitively inside SQL functions. Clean up some other grotty code associated with tupdescs, and fix a few other memory leaks exposed by tests with simple SQL functions.
2001-01-29The following patch is required for successful compilation on Irix.Bruce Momjian
Robert E. Bruccole
2001-01-28Used LEFT OUTER JOIN for various queriesPhilip Warner
2001-01-28Applied (slightly modified) patches from Tatsuo:Philip Warner
Ok. I have made patches for fixing some of pg_dump problems(see attached patches). The patches address the problem with user defined functions, operators and aggregates.
2001-01-27Here is an update on the Win32 patch. Modified files are 'config.h.win32'Bruce Momjian
and two 'win32.mak'. Addresses the following: 1) Oops. Spelled fcntl.h wrong in the last one. D'uh. 2) PG_VERSION changed to be defined with " around it. psql/command.c failed to compile without that. 3) Changed makefiles to use "/MD" and link both psql and libpq.dll against MSVCRT.DLL instead of a static library. This takes care of the crash-upon-free in psql. I *think* this is what is on the "Open 7.1 Items" list as "Magnus Hagander ODBC Issues?". It has nothing to do with ODBC, but it's the only issue I've been involved with... Magnus Hagander
2001-01-27Add missing pgaccess files.Bruce Momjian
2001-01-27Update to pgaccess 0.98.7.Bruce Momjian
2001-01-27When dropping the schema, reconnect as owner of each object.Philip Warner
2001-01-27Add permission check for CHECKPOINT.Peter Eisentraut