aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Update pltcl regress test to exercise return_null; also make use ofTom Lane2000-10-17
| | | | | the fact that CREATE FUNCTION and CREATE AGGREGATE now allow array types to be named like int4[] rather than _int4.
* Locate the file pg_service.conf in the directory configured as --syconfdirPeter Eisentraut2000-10-17
| | | | (i.e., /usr/local/pgsql/etc by default).
* Fixed some bugs in C language parsing.Michael Meskes2000-10-17
|
* * doc/src/sgml/regress.sgml: Update for new driver script.Peter Eisentraut2000-10-17
| | | | | | | | | | | | * doc/src/sgml/installation.sgml: ditto. * src/test/regress/README: Regenerate. * doc/src/sgml/docguide.sgml: Explain how it was done. Explain how INSTALL and HISTORY are (now) generated. * doc/src/sgml/Makefile: Implement HISTORY generation to be analoguous to INSTALL.
* Some more getTimestamp() fixesPeter Mount2000-10-17
|
* Remove duplicate requiressl entry.Bruce Momjian2000-10-17
|
* update website referencesVince Vielhaber2000-10-17
|
* Simplified parsing of connect rule.Michael Meskes2000-10-17
|
* Update FAQ.Bruce Momjian2000-10-17
|
* Update TODO list.Bruce Momjian2000-10-17
|
* FAQ_MSWIN is better than INSTALL_MSWINBruce Momjian2000-10-17
|
* Rename INSTALL_WIN to INSTALL_MSWIN. MS doesn't own the Windows name!Bruce Momjian2000-10-17
|
* TNS:Bruce Momjian2000-10-17
| | | | | | | | I prepared and tested a patch vs. 7.0.2, and it works fine. I've added another option which allows users to have their own service file in ~/.pg_service.conf, which might come handy sometimes. Mario Weilguni
* I wasn't too sure where to mail this.Bruce Momjian2000-10-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I have noticed that there are some identical files in postgresql-7.0.2/src/test/regress/expected/ > diff float8-cygwin.out float8-small-is-zero.out #I recommend deleting float8-cygwin.out > diff geometry-cygwin-precision.out geometry-solaris-precision.out #I recommend deleting geometry-cygwin-precision.out below is the diff of postgresql-7.0.2/src/test/regress/resultmap that has the above files deleted plus the addition of an alpha regression test built with alphaev56-dec-osf4.0e/2.95.2/ . The alpha geometry regression file is attached 11c11 < float8/i.86-pc-cygwin*=float8-cygwin --- > float8/i.86-pc-cygwin*=float8-small-is-zero 18c18 < geometry/i.86-pc-cygwin*=geometry-cygwin-precision --- > geometry/i.86-pc-cygwin*=geometry-solaris-precision 21a22 > geometry/alpha.*-dec-osf=geometry-alpha-precision Ricardo Muggli Systems Manager Information and Technology Services Minnesota State University, Mankato
* Update TODO list.Bruce Momjian2000-10-16
|
* Update TODO list.Bruce Momjian2000-10-16
|
* Update TODO list.Bruce Momjian2000-10-16
|
* Fixed handling of variables in connect rule.Michael Meskes2000-10-16
|
* Update TODO list.Bruce Momjian2000-10-16
|
* Update TODO list.Bruce Momjian2000-10-16
|
* Remove NO_SECURITY define.Bruce Momjian2000-10-16
|
* Fix typo in code.Bruce Momjian2000-10-16
|
* Update TODO list.Bruce Momjian2000-10-16
|
* Update TODO list.Bruce Momjian2000-10-16
|
* Something changed, that now shows that there is a dependency missing inBruce Momjian2000-10-16
| | | | | | | | Makefile .aix Please apply to current, to fix shared lib build from single .o files. Thanks Andreas
* New file naming. Database OID is used as "tablespace" id andVadim B. Mikheev2000-10-16
| | | | | relation OID is used as file node on creation but may be changed later if required. Regression Tests Approved (c) -:)))
* I submitted three patches to pgsql-patches@postgresql.org on Oct 13.Bruce Momjian2000-10-16
| | | | | | | | | | Only two have shown up on the web site. Even the mbox is missing the second. The missing patch is a one-liner, so here it is. I can resend the whole bug report if wanted. Pete Forman
* Added pg_restore to allfiles.sgmlPhilip Warner2000-10-16
|
* Here is a patch against the same cvs tree as the SSL patch (Aug 20).Bruce Momjian2000-10-16
| | | | | | | | | | | | | | | | I hope I didn't mess the SGML up too bad, but somebody should definitly look that over. I tried to steal as much as I could from around :-) This patch updates: * Installation instructions (paragraph on how to compile with openssl) * Documentation of pg_hba.conf (added "hostssl" record docs) * Libpq documentation (added connection option, documentation of PQgetssl() function) * Add section on SSL to "Server Runtime Environment" If you beleive any particular area needs more attention, please let me know. //Magnus
* author settingMarc G. Fournier2000-10-16
|
* againMarc G. Fournier2000-10-16
|
* again ...Marc G. Fournier2000-10-16
|
* test againMarc G. Fournier2000-10-16
|
* let's see if this gets the 'committer' into the email now ...Marc G. Fournier2000-10-16
|
* Change jdbc docs from postgresql.Driver to org.postgresql.Driver.Bruce Momjian2000-10-16
|
* testing ...Marc G. Fournier2000-10-16
|
* Update TODO list.Bruce Momjian2000-10-15
|
* Update TODO list.Bruce Momjian2000-10-15
|
* Update TODO list.Bruce Momjian2000-10-15
|
* Update TODO list.Bruce Momjian2000-10-15
|
* Fix prototype declaration based on patch from David ReidPhilip Warner2000-10-15
|
* autoconfBruce Momjian2000-10-14
|
* This fixes a small problem with identifying -lbind as required forBruce Momjian2000-10-14
| | | | | | BeOS. David Reid
* The configure script fails to find <netinet/tcp.h>.Bruce Momjian2000-10-14
| | | | | | | | | | | | | | | | | | | | | | | As a result, backend/libpq/pqcomm.c and interfaces/libpq/fe-connect.c fail to compile. The <netinet/tcp.h> header needs to be preceded by <netinet/in.h>, at least on IRIX, Solaris and AIX. The simple configure test fails. (That header on Linux is idempotent.) The basic problem is that <netinet/tcp.h> is a BSD header. The correct header for TCP internals such as TCP_NODELAY on a UNIX system is <xti.h>. By UNIX I mean UNIX95 (aka XPG4v2 or SUSv1) or later. The current UNIX standard (UNIX98 aka SUSv2) is available online at <http://www.opengroup.org/onlinepubs/7908799/>. The fix is to add header support for <xti.h> into configure.in and config.h.in. The 2 files which conditionally include <netinet/tcp.h> need also to conditionally include <xti.h>. Pete Forman
* Here is a patch for resultmap and the results file.Bruce Momjian2000-10-14
| | | | | | | | I have counted 9 differences in the least significant digit compared with geometry-positive-zeros.out. It would be wise for someone else to double check. Pete Forman
* Update TODO list.Bruce Momjian2000-10-14
|
* gainMarc G. Fournier2000-10-14
|
* testing committers list ...Marc G. Fournier2000-10-14
|
* Update detail for new todo items.Bruce Momjian2000-10-14
|
* Update TODO list.Bruce Momjian2000-10-14
|