0
I Use This!
Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Jun 02, 2024 — Jun 02, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
gcc complains about improperly terminated comment. More... over 24 years ago
Further to the previous ODBC patches I posted today, I found a couple of problems with char array sizes having set a couple of constants to 0 for unlimited query length and row length. This additional patch cleans those problems up by defining a new constant (STD_STATEMENT_LEN) to 65536 and using that in place of MAX_STATEMENT_LEN. More... over 24 years ago
> From: Tom Lane [mailto:[email protected]] > Sent: 24 January 2001 16:51 > To: Dave Page > Subject: Re: [PATCHES] ODBC Patch for OJs/Large Querys & Rows > > > > SQL_OJ_LEFT = Left outer joins are supported. > > Yes. <snip> More... over 24 years ago
I decided to give this a go after all :-) The attached patch does the following but it does *not* check whether the user is connected to PostgreSQL 7.0.x or 7.1 first (as would be required for some of the features) - the driver doesn't do this at all afaik and it's beyond my capabilities to implement such checking in code that doesn't look like it was written by my 1 year old daughter! More... over 24 years ago
Subject: Bug in SQLForeignKeys() More... over 24 years ago
Remove C++ comment. More... over 24 years ago
Remove inclusions of <malloc.h>. More... over 24 years ago
Fix linker options for ODBC driver. See comment in src/interfaces/odbc/GNUmakefile. More... over 24 years ago
there is one problem with Zoltan patches commited into the tree: if we set autocommit off and issued COMMIT (or ROLLBACK) on a connection new transaction is not started More... over 24 years ago
Make all ODBCVER = 2.50 More... over 24 years ago
Fix ODBC compile, prevent ODBCVER warning, though the version numbers go not match. More... over 24 years ago
Here is patch to the ODBC driver to update the version to 2.5 and allow all forms of foreign keys be exposed to SQLForeignKeys. This patch is in addition to the ones I mailed yesterday (forget had I changed that as well....) More... over 24 years ago
Here is a diff to info.c in interfaces/odbc that updates SQLForeignKeys to return foreign key information based on the pg_trigger system table. I have tested the patch with (what I believe) is all possible primary/foreign key combinations -- however I may have missed some, so if anyone feels like taking the patch for a test drive, here are some useful links: More... over 24 years ago
Ensure that all uses of <ctype.h> functions are applied to unsigned-char values, whether the local char type is signed or not. This is necessary for portability. Per discussion on pghackers around 9/16/00. More... over 24 years ago
Remove compiler warnings (add missing include files). Only link against -lm if it's actually there. More... over 24 years ago
From Zoltan Kovacs back in April (sorry for the delay Zoltan!): More... over 24 years ago
Major overhaul of large-object implementation, by Denis Perchine with kibitzing from Tom Lane. Large objects are now all stored in a single system relation "pg_largeobject" --- no more xinv or xinx files, no more relkind 'l'. This should offer substantial performance improvement for large numbers of LOs, since there won't be directory bloat anymore. It'll also fix problems like running out of locktable space when you access thousands of LOs in one transaction. Also clean up cruft in read/write routines. LOs with "holes" in them (never-written byte ranges) now work just like Unix files with holes do: a hole reads as zeroes but doesn't occupy storage space. INITDB forced! More... over 24 years ago
Polish shared library build to reduce number of special hacks. In particular, allow linking with arbitrary commands rather than only $(AR) or $(LD), and treat C++ without hacks. More... over 24 years ago
Add support for VPATH builds, that is, building somewhere else than in the source directory. This involves mostly makefiles using $(srcdir) when they might have used ".". (Regression tests don't work with this, yet.) More... over 24 years ago
Move contrib/odbc/odbc.sql together with odbc driver, remove old files; revise ODBC "installation instructions"; update some other outdated documentation; update contrib documentation More... over 24 years ago
Support for DESTDIR make variable. This is used as in `make install DESTDIR=/else/where' and prepends the value of DESTDIR to the full installation paths (e.g., /else/where/usr/local/pgsql/bin). This allows users to install the package into a location different from the one that was configured and hard-coded into various scripts, e.g., for creating binary packages. More... over 24 years ago
Fix relative path references so that make knowns which dependencies refer to one another. Sort out builddir vs srcdir variable namings. Remove some now obsoleted make variables. More... almost 25 years ago
Remove bogus use of int4out(). More... almost 25 years ago
didn't compile More... almost 25 years ago
|> The Makefile.shlib changes will have to be discussed with other Linux |> developers so we are sure it will work on all platforms. More... almost 25 years ago
Makefile cleanup for interface tree. Now essentially with all the standard targets and behaviour. Replaced Makefile.in's with Makefile's and declared the respective variables in Makefile.global. More... almost 25 years ago
Cleaned up PL/pgSQL build. Fixed a couple of copyandpaste'os in the interfaces and interfaces/odbc make files. Adjusted regression test driver to start building and installing in the top level directory. More... almost 25 years ago
Integrated ODBC driver into regular build. No more standalone business, which didn't work anyway. Had to back out unixodbc related patch which broke the regular ODBC build. More... almost 25 years ago
Rename HAVE_SQLGETPRIVATEPROFILESTRING to something resonable in length and readability. More... almost 25 years ago
fix HAVE_SQLGETPRIVATEPROFILESTRING define More... almost 25 years ago