aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* New HeapTuple structure/interface.Vadim B. Mikheev1998-11-27
|
* New HeapTuple structure/interface.Vadim B. Mikheev1998-11-27
|
* New HeapTuple structure/interface.Vadim B. Mikheev1998-11-27
|
* Fixed bug in the unknown module. Module still tried to callJan Wieck1998-11-23
| | | | | | builtin SPI commands by their old SPI_* names. New names are spi_*. Jan - 11/23/1998
* modify configure so that template/.similar entries can beTom Lane1998-11-23
| | | | | | | selected when they match a prefix of the value. The previous method, which stripped all version data from and then tried to match that against .similar entries, was entirely useless when .similar contained several entries for different version numbers of a single OS name.
* Fix using indices in OR.Vadim B. Mikheev1998-11-22
| | | | EXPLAIN all indices used.
* Added indxqualorig to IndexScan: fix for using indices in OR.Vadim B. Mikheev1998-11-22
|
* Updating and addign files...Marc G. Fournier1998-11-19
|
* Performance improvement for libpq: avoid calling malloc separatelyTom Lane1998-11-18
| | | | for each field of each tuple. Makes more difference than you'd think...
* Add text<->float8 and text<->float4 conversion functions.Thomas G. Lockhart1998-11-17
| | | | | This will fix the problem reported by Jose' Soares when trying to cast a float to text.
* Additional fixes for mixed-case table names from Billy Allie.Thomas G. Lockhart1998-11-17
|
* From: Taral <taral@cyberjunkie.com>Marc G. Fournier1998-11-17
| | | | More COS Query Service support.
* Start defining the Corba work...Marc G. Fournier1998-11-16
| | | | From: Taral <taral@cyberjunkie.com>
* Fix a couple of bugs involving calling fmtID() twice inTom Lane1998-11-15
| | | | a single printf() ... it'd work if fmtId() didn't use a static return area...
* Add "vacuumdb" utility to make it easier to clean databases.Thomas G. Lockhart1998-11-14
| | | | | Also supports the "analyze" mode, with or without specifying tables and columns.
* Add "vacuumdb" utility.Thomas G. Lockhart1998-11-14
|
* Fix test for table existance to allow mixed-case and whitespace inThomas G. Lockhart1998-11-12
| | | | the table name. Problem reported by Billy Allie.
* Fix at least a few shared-library problems on Linux.Tom Lane1998-11-12
| | | | We have not seen the end of this issue :-(.
* Update for version 06-40-0001Byron Nikolaidis1998-11-11
|
* Fix for NOT in where clause causing crash.Bruce Momjian1998-11-09
|
* EXPLAIN VERBOSE had a very high probability of triggeringTom Lane1998-11-08
| | | | | | a backend core dump, because it was concatenating a potentially long string onto another string that didn't necessarily have enough room. Shame, shame.
* Fix a potential infinite loop in appendStringInfo: would lockTom Lane1998-11-08
| | | | | | up if first string to be appended to an empty StringInfo was longer than the initial space allocation. Also speed it up slightly.
* Add "-N" flag to force double quotes around identifiers.Thomas G. Lockhart1998-11-06
| | | | | | | | This is the default, but the new flag will allow overriding an alias, for example. So psql -n -N will put in the double quotes, and psql -n can be an alias for psql. Also, add a few braces around a nested single-line conditional construct to suppress compiler warnings about "an ambiguous else".
* August version of docs superceded by sgml version from Jan.Thomas G. Lockhart1998-11-06
|
* Upgrade to 0.91 ...Marc G. Fournier1998-11-06
|
* Test for and handle NULL arguments to mylog() print statements.Thomas G. Lockhart1998-11-04
| | | | Include definition for _IN_ADDR_T if INADDR_NONE is not defined.
* Somehow had the solaris template names reversed. Probably was somethingThomas G. Lockhart1998-11-04
| | | | fixed in src/configure.in a while ago.
* Fix for relname.data from SHIOZAKI TakehikoBruce Momjian1998-11-02
|
* slight mods required for freebsd (elf vs aout stuff)Marc G. Fournier1998-11-02
|
* Remove various files that were moved to various subdirectories...Marc G. Fournier1998-11-01
| | | | Requested by: Peter T Mount peter@retep.org.uk
* oops, forgot one part of the patch...remove 'false' setting to ELF_SYS...Marc G. Fournier1998-10-31
|
* Minor FreeBSD fixes put in placeMarc G. Fournier1998-10-31
| | | | | | | | | | | | | | | | | | | | | From: SHIOZAKI Takehiko <takehi-s@ascii.co.jp> I tried snapshot(Oct30) and made some patches. # I think that it is confused to manage both Makefile.shlib and # makefiles/Makefile.*, don't you? * configure Now FreeBSD 2.X is not supported..., so I added its entry. If ELF_SYSTEM is set, gmake treat it defined even though it is "false". So nothing should be set to use "ifdef". BSD_SHLIB etc. may have same problems. * Makefile.shlib As you said, FreeBSD entry is much like BSD's. I only added ELF_SYSTEM code. * makefiles/Makefile.freebsd Ifdef/else/endif can not be indented with TABs.
* s_lock patch from Ryan.Bruce Momjian1998-10-31
|
* Mention --without-CXX option in online help.Tom Lane1998-10-30
|
* Behave reasonably on a system without shared libraries.Tom Lane1998-10-30
|
* Okay, this shoudl provide a fix for the freebsd problem...Marc G. Fournier1998-10-30
| | | | Added a ELF_SYS variable and check to configure.in...
* oid8neq => oid8neTom Lane1998-10-29
|
* Drat. Should test a few more cases before committing.Tom Lane1998-10-29
|
* Add tests for comparison operators.Thomas G. Lockhart1998-10-29
|
* Fix regression test now that code seems to work.Thomas G. Lockhart1998-10-29
| | | | Add tests for comparison operators.
* Very minor cleanup of no-op code.Thomas G. Lockhart1998-10-29
|
* Fix discrepency in "@" operator for point and path.Thomas G. Lockhart1998-10-29
|
* Add oid8neq.Bruce Momjian1998-10-29
|
* Run autoconf.Tom Lane1998-10-29
|
* Run AC_PROG_GCC_TRADITIONAL only when running AC_PROG_CC,Tom Lane1998-10-29
| | | | | | | | ie, not when user specifies --with-CC. This corrects a scripting error that I'm surprised hasn't been reported more often. Moving the macro call to the earlier point in the script is correct anyway: if -traditional is needed, it should get added to CFLAGS before we start using the compiler for other tests.
* Re-fix test for negative-integer return code that should beTom Lane1998-10-29
| | | | testing for null-pointer return code...
* D'Arcy INET fix.Bruce Momjian1998-10-29
|
* I suspect that there is no longer a need for a platform-Tom Lane1998-10-29
| | | | | specific version of this result, now that tintervals actually sort correctly. We can always add it back if NetBSD really is different.
* Update tinterval test to have correctly sorted results,Tom Lane1998-10-29
| | | | | now that bugs in pg_operator that caused wrongly sorted results have been corrected (I hope ... it works here, anyway).
* Add new regression test to catch some simple kinds ofTom Lane1998-10-29
| | | | | | mistakes in creating pg_operator table. NOTE: right now, this will fail because of conflicting definitions for point @ path operator. I trust we're gonna fix that.