aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces
Commit message (Collapse)AuthorAge
* Removed timezone in ResultSet.getTimestamp()Peter Mount2000-06-01
|
* More perl cleanupBruce Momjian2000-06-01
|
* Rename perl example eg directory to examples.Bruce Momjian2000-06-01
|
* The heralded `Grand Unified Configuration scheme' (GUC)Peter Eisentraut2000-05-31
| | | | | | | | | | | | | That means you can now set your options in either or all of $PGDATA/configuration, some postmaster option (--enable-fsync=off), or set a SET command. The list of options is in backend/utils/misc/guc.c, documentation will be written post haste. pg_options is gone, so is that pq_geqo config file. Also removed were backend -K, -Q, and -T options (no longer applicable, although -d0 does the same as -Q). Added to configure an --enable-syslog option. changed all callers from TPRINTF to elog(DEBUG)
* Cleanup of <> and ""Bruce Momjian2000-05-29
|
* Generated header files parse.h and fmgroids.h are now copied intoTom Lane2000-05-29
| | | | | the src/include tree, so that -I backend is no longer necessary anywhere. Also, clean up some bit rot in contrib tree.
* First round of changes for new fmgr interface. fmgr itself and theTom Lane2000-05-28
| | | | | | | key call sites are changed, but most called functions are still oldstyle. An exception is that the PL managers are updated (so, for example, NULL handling now behaves as expected in plperl and plpgsql functions). NOTE initdb is forced due to added column in pg_proc.
* Update kerberos patchBruce Momjian2000-05-27
|
* Back out kerberos changes. Causes compile problems.Bruce Momjian2000-05-27
|
* Patch for Kerberos V.Bruce Momjian2000-05-27
| | | | | | | | | | | | Most (nearly all) of the work was done by David Wragg <dpw@doc.ic.ac.uk> He patched 6.5.3. I've updated it for 7.0RC5. It works for MIT kerberos 1.1.1 (and previously for 1.0.6 as well). I've got the patch against 6.5.3, plus kerberized RPMS. Mike Wyer <mw@doc.ic.ac.uk> || "Woof?"
* Remove // comments from ODBC.Bruce Momjian2000-05-27
|
* ! * Users doing non-blocking connections need to handle the resetBruce Momjian2000-05-25
| | | | | | | ! * themselves, they'll need to check the connection status if we ! * return an error. Alfred Perlstein
* Irix fixes from Murad NayalBruce Momjian2000-05-22
|
* Remove calls to getprotobyname(), which we now know leaks memory onTom Lane2000-05-21
| | | | | | some platforms --- and I also see that it is documented as not thread- safe on HPUX and possibly other platforms. No good reason not to just use IPPROTO_TCP constant from <netinet/in.h> instead.
* Fix WARN->NOTICE in docs. Change libpgeasy connection parameters to useBruce Momjian2000-05-18
| | | | PQconnectdb() style connections.
* Back out odbc changes until 7.1.Bruce Momjian2000-05-17
|
* *** empty log message ***Michael Meskes2000-05-17
|
* Several compilation and run-time problems occur when building on SGIBruce Momjian2000-05-16
| | | | | | | | | | | | IRIX systems using the native compilers. A summary is: - Various files use "//" as a comment delimiter in c files. - Problems caused by assuming "char" is signed. cash.in: building -signed the rules regression test fails as described in FAQ_QNX4. If CHAR_MAX is "255U" then ((signed char)CHAR_MAX) is -1. postmaster.c: random number regression test failed without this change. - Some generic build issues and warning message cleanup. David Kaelbling
* Remove configure check for how to abbreviate 'tr A-Z a-z', and insteadTom Lane2000-05-16
| | | | | | | just use the portable form, tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz There were a bunch of places that weren't paying attention to configure's result anyway (including configure itself!?); clean them up too.
* Fixed the message Makefile produces after compiling. It still saidPeter Mount2000-05-15
| | | | | about the old Driver class, not the new package. Spotted by Joseph Shraibman <jks@p1.selectacast.net>
* *** empty log message ***Michael Meskes2000-05-15
|
* Fix the off by one errors in ResultSet from 6.5.3, and more.Bruce Momjian2000-05-12
| | | | | | | | | I'm including a diff of postgresql-7.0/src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java. I've clearly marked all the fixes I did. Would *someone* who has access to the cvs please put this in? Joseph Shraibman
* ImageViewer transaction fixesPeter Mount2000-05-05
|
* Minor fixes ready for 7.0Peter Mount2000-05-03
|
* Update SCO FAQ. Billy G. AllieBruce Momjian2000-05-02
|
* Clean up ecpg test files.Bruce Momjian2000-04-29
|
* Update pgeasy examplesBruce Momjian2000-04-28
|
* Update libpgeasy define.Bruce Momjian2000-04-28
|
* Change libpgeasy to take dbname at end like all other interfaces.Bruce Momjian2000-04-28
|
* Update libpgeasy e-mail addressBruce Momjian2000-04-27
|
* Remove DriverClass.java. It is generated by the compile.Bruce Momjian2000-04-26
|
* Add res clear to exampleBruce Momjian2000-04-26
|
* Install Peter's Makefile.Bruce Momjian2000-04-26
|
* Reinstalled revision 1.36 (looks Peter Mount installedJan Wieck2000-04-26
| | | | | | a new JDBC Makefile here by accident) Jan
* third attemptPeter Mount2000-04-26
|
* Attempt IIIPeter Mount2000-04-26
|
* Another attemptPeter Mount2000-04-26
|
* Update libpgeasy readme.Bruce Momjian2000-04-26
|
* Make c++ examples return 0 from main().Bruce Momjian2000-04-25
|
* Add mention of int in variable.Bruce Momjian2000-04-23
|
* Add mention of int for variable in examplesBruce Momjian2000-04-23
|
* Our test to see if we had permission to install into Perl5 install areaTom Lane2000-04-23
| | | | | | always failed if Perl makefile's INSTALLSITELIB variable was specified in terms of another variable. Fix by adding an echo-installdir target to the Perl makefile, which the upper-level Makefile can invoke.
* Remove broken tracing code (which would be dangerous if it did work...)Tom Lane2000-04-22
| | | | | | | | | | | libpq++.h contained copies of the class declarations in the other libpq++ include files, which was bogus enough, but the declarations were not completely in step with the real declarations. Remove these in favor of including the headers with #include. Make PgConnection destructor virtual (not absolutely necessary, but seems like a real good idea considering the number of subclasses derived from it). Give all classes declared private copy constructors and assignment operators, to prevent compiler from thinking it can copy these objects safely.
* Update example: PgLargeObject constructor now takes a conninfo string,Tom Lane2000-04-22
| | | | not a bare database name.
* Allow libpq++ compile failure to stop entire compile.Bruce Momjian2000-04-20
|
* Make ECPGraise's str parameter const to suppress warnings from gccTom Lane2000-04-18
| | | | and errors from pickier compilers.
* Another attempt at 7.0Peter Mount2000-04-17
|
* Remove bogus extern for 'descriptors' variable, which is in fact static.Tom Lane2000-04-14
| | | | Some compilers object to seeing extern and later static ...
* #undef const, inline, signed, volatile, on the expectation that a C++Tom Lane2000-04-14
| | | | | | compiler will understand them. configure may have #define'd them to empty because the local C compiler doesn't understand them, but this may very well cause a C++ compilation to fail, so don't do it in C++.
* If configure finds that inet_aton() is not present on this platform,Tom Lane2000-04-14
| | | | | | | | | include the version from backend/port into libpq. There is a second-rate implementation of inet_aton() already present in fe-connect.c, #ifdef'd WIN32. That ought to be removed in favor of using the better version from port/. However, since I'm not in a position to test the WIN32 code, I will leave well enough alone for this release...