summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Bruce Momjian [Fri, 15 Dec 2000 19:11:28 +0000 (19:11 +0000)]
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
Max Khon
Bruce Momjian [Mon, 11 Dec 2000 19:06:11 +0000 (19:06 +0000)]
Make all ODBCVER = 2.50
Bruce Momjian [Mon, 11 Dec 2000 18:51:26 +0000 (18:51 +0000)]
Fix ODBC compile, prevent ODBCVER warning, though the version numbers go
not match.
Bruce Momjian [Sun, 10 Dec 2000 23:54:28 +0000 (23:54 +0000)]
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....)
Michael Fork - CCNA - MCP - A+
Network Support - Toledo Internet Access - Toledo Ohio
Bruce Momjian [Sun, 10 Dec 2000 22:59:10 +0000 (22:59 +0000)]
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:
Michael Fork
Tom Lane [Sun, 3 Dec 2000 20:45:39 +0000 (20:45 +0000)]
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.
Peter Eisentraut [Sat, 28 Oct 2000 15:10:36 +0000 (15:10 +0000)]
Remove compiler warnings (add missing include files). Only link against
-lm if it's actually there.
Thomas G. Lockhart [Wed, 25 Oct 2000 14:15:49 +0000 (14:15 +0000)]
From Zoltan Kovacs back in April (sorry for the delay Zoltan!):
I modified the current ODBC driver for
* referential integrity error reporting,
* SELECT in transactions and
* disabling autocommit.
I tested these changes with Borland C++ Builder -> ODBCExpress ->
WinODBC driver (DLL) -> Postgres 7.0beta1 and Borland C++ Builder -> BDE ->
WinODBC driver (DLL) -> Postgres 7.0beta1. The patch is based on snapshot of
22th April (I don't think that someone has modified it since that: Byron
hasn't gave any sign of living for about a month and I didn't find any
comments about the ODBC driver on the list).
Tom Lane [Tue, 24 Oct 2000 01:38:43 +0000 (01:38 +0000)]
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!
Peter Eisentraut [Mon, 23 Oct 2000 21:43:58 +0000 (21:43 +0000)]
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.
Add option to disable shared libraries. This takes the place of the
BSD_SHLIB variable. The regression test driver ignores the plpgsql test
if there are no shared libraries available.
Peter Eisentraut [Fri, 20 Oct 2000 21:04:13 +0000 (21:04 +0000)]
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.)
Sort out usage of CPPFLAGS, CFLAGS (and CXXFLAGS). Add "override" keyword
in most places, to preserve necessary flags even when the user overrode the
flags.
Peter Eisentraut [Mon, 18 Sep 2000 20:11:37 +0000 (20:11 +0000)]
Move contrib/odbc/odbc.sql together with odbc driver, remove old files;
revise ODBC "installation instructions"; update some other outdated
documentation; update contrib documentation
Peter Eisentraut [Sun, 17 Sep 2000 13:02:51 +0000 (13:02 +0000)]
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.
DESTDIR is in many cases preferrable over `make install
prefix=/else/where' because
a) `prefix' affects the path that is hard-coded into the files, which can
lead to a `make install prefix=xxx' (as done by the regression test
driver) corrupting the files in the source tree with wrong paths.
b) it doesn't work at all if a directory was overridden to not depend on
`prefix', e.g., --sysconfdir=/etc.
(Updating the regression test driver to use DESTDIR is a separate
undertaking.)
See also autoconf@gnu.org, From: Akim Demaille <akim@epita.fr>, Date: 08
Sep 2000 12:48:59 +0200, Message-ID:
<mv4em2vb1lw.fsf@nostromo.lrde.epita.fr>, Subject: Re: HTML format
documentation.
Peter Eisentraut [Thu, 31 Aug 2000 16:11:55 +0000 (16:11 +0000)]
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.
Tom Lane [Tue, 29 Aug 2000 00:57:21 +0000 (00:57 +0000)]
Remove bogus use of int4out().
Peter Eisentraut [Fri, 14 Jul 2000 16:40:40 +0000 (16:40 +0000)]
didn't compile
Bruce Momjian [Fri, 7 Jul 2000 01:23:44 +0000 (01:23 +0000)]
|> The Makefile.shlib changes will have to be discussed with other Linux
|> developers so we are sure it will work on all platforms.
The problem with the current settings is that the linker is called
directly. This is wrong, it should always be called through the
compiler
driver (the only exception is `ld -r'). This will make sure that the
necessary libraries like libgcc are linked in.
But there is still a different problem with the setting of LDFLAGS_ODBC.
The psqlodbc module defines the functions _init and _fini which are
reserved for the shared library initialisation. These should be changed
to constructor functions. Then LDFLAGS_ODBC can be changed to be just
`-lm'. Btw, why does it use -Bsymbolic?
Andreas Schwab
Peter Eisentraut [Wed, 28 Jun 2000 18:29:54 +0000 (18:29 +0000)]
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.
maintainer-clean target now available at top level, although it does
not work in the backend tree yet.
Cleanup pass over Makefile.shlib, renamed some targets and variables.
The shared library symlink tests are now done by make, not the shell.
ecpg: Remove one warning in sloppy flex output.
PL/Perl and Perl interface: the MakeMaker documentation is confusing,
the realclean target *does* "delete derived files", but it also
uninstalls them. Don't use that.
The submake targets in the various bin directories that update libpq
should `make all', not `make libpq.a'. That is a) unportable, and
b) doesn't build the shared library.
Peter Eisentraut [Tue, 20 Jun 2000 16:39:57 +0000 (16:39 +0000)]
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.
Peter Eisentraut [Mon, 19 Jun 2000 16:58:48 +0000 (16:58 +0000)]
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.
Bruce Momjian [Mon, 19 Jun 2000 13:39:03 +0000 (13:39 +0000)]
Rename HAVE_SQLGETPRIVATEPROFILESTRING to something resonable in length
and readability.
Bruce Momjian [Mon, 19 Jun 2000 13:35:30 +0000 (13:35 +0000)]
fix HAVE_SQLGETPRIVATEPROFILESTRING define
Bruce Momjian [Wed, 14 Jun 2000 02:43:46 +0000 (02:43 +0000)]
OK, I have tidied up todays (13th) snapshot with the attached patch, I
have'nt r un autoconf to create a new configure, I guess that's done by
the smapshot process, I had to remove a line from interface/odbc/
GNUMakefile to get it to build, it was a autoconf variable that looks to
not be used anymore, I am assuming that this is ok.
Nick Gorham
Easysoft Ltd
Bruce Momjian [Mon, 12 Jun 2000 17:58:20 +0000 (17:58 +0000)]
Back out old unixodbc patches and apply new ones. Nick Gorham
Bruce Momjian [Fri, 9 Jun 2000 16:03:09 +0000 (16:03 +0000)]
I have made the couple of mods required to make the odbc driver with
postgres build and use unixODBC (http://www.unixodbc.org)
This patch was applied against the postgresql-7.0beta1 build
Any problems let me know.
Nick Gorham
Bruce Momjian [Thu, 8 Jun 2000 17:08:54 +0000 (17:08 +0000)]
More odbc include cleanups
Bruce Momjian [Thu, 8 Jun 2000 17:07:34 +0000 (17:07 +0000)]
Update odbc include
Bruce Momjian [Thu, 8 Jun 2000 16:40:51 +0000 (16:40 +0000)]
Fix ODBC for new binary fopen/open params
Peter Eisentraut [Tue, 6 Jun 2000 22:01:09 +0000 (22:01 +0000)]
Moved configure script from src/ to the top level directory. Moved
configuration helper things into config/ dir. Adjusted some relative paths
in makefiles.
Bruce Momjian [Fri, 2 Jun 2000 15:57:43 +0000 (15:57 +0000)]
Remove NT-specific file open defines by defining our own open macros for
"rb" and "wb".
Bruce Momjian [Mon, 29 May 2000 21:25:05 +0000 (21:25 +0000)]
Cleanup of <> and ""
Bruce Momjian [Sat, 27 May 2000 03:35:14 +0000 (03:35 +0000)]
Remove // comments from ODBC.
Bruce Momjian [Mon, 22 May 2000 23:56:43 +0000 (23:56 +0000)]
Irix fixes from Murad Nayal
Bruce Momjian [Wed, 17 May 2000 15:36:37 +0000 (15:36 +0000)]
Back out odbc changes until 7.1.
Bruce Momjian [Tue, 16 May 2000 20:48:52 +0000 (20:48 +0000)]
Several compilation and run-time problems occur when building on SGI
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
Tom Lane [Tue, 16 May 2000 02:14:13 +0000 (02:14 +0000)]
Remove configure check for how to abbreviate 'tr A-Z a-z', and instead
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.
Thomas G. Lockhart [Fri, 7 Apr 2000 13:40:24 +0000 (13:40 +0000)]
Add transcendental math functions (sine, cosine, etc)
Add a random number generator and seed setter (random(), SET SEED)
Fix up the interval*float8 math to carry partial months
into the time field.
Add float8*interval so we have symmetry in the available math.
Fix the parser and define.c to accept SQL92 types as field arguments.
Fix the parser to accept SQL92 types for CREATE TYPE, etc. This is
necessary to allow...
Bit/varbit support in contrib/bit cleaned up to compile and load
cleanly. Still needs some work before final release.
Implement the "SOME" keyword as a synonym for "ANY" per SQL92.
Implement ascii(text), ichar(int4), repeat(text,int4) to help
support the ODBC driver.
Enable the TRUNCATE() function mapping in the ODBC driver.
Tom Lane [Tue, 4 Apr 2000 03:00:16 +0000 (03:00 +0000)]
Correct off-by-one error in strncat() usage.
Thomas G. Lockhart [Tue, 4 Apr 2000 01:07:54 +0000 (01:07 +0000)]
Augment the function call map logic with code from Tom Lane.
Should be more robust to overflows.
Pass through an unmapped function unchanged, rather than rejecting it.
Add a few more functions, but comment out those which can go through as-is.
Can be used with contrib/odbc/ package, though that isn't committed yet.
Thomas G. Lockhart [Mon, 27 Mar 2000 17:04:47 +0000 (17:04 +0000)]
Change form of query which used "DISTINCT ON" to help support primary keys.
We still have an internal limit in the ODBC code of 8 columns per key,
but this should lay the groundwork for resolving that.
Includes reformulated query from Tom Lane.
Tom Lane [Tue, 21 Mar 2000 06:35:22 +0000 (06:35 +0000)]
Forgot that odbc had its own copies of config.sub/config.guess.
Update those to latest Autoconf sources, too.
Thomas G. Lockhart [Tue, 21 Mar 2000 06:02:22 +0000 (06:02 +0000)]
Fix query for primary keys to reflect new DISTINCT ON () syntax.
Reported by "Tibor Laszlo" <ltibor@mail.tiszanet.hu> and fix suggested by
"Hiroshi Inoue" <Inoue@tpf.co.jp>.
Tom Lane [Sat, 18 Mar 2000 18:57:16 +0000 (18:57 +0000)]
Clean up minor compiler warnings.
Bruce Momjian [Thu, 2 Mar 2000 02:01:00 +0000 (02:01 +0000)]
Patch for Irix from Mark Dalphin.
Byron Nikolaidis [Mon, 28 Feb 2000 03:31:36 +0000 (03:31 +0000)]
update to 6.40.0009 and provide WIN32 defines for auto-configured items
such as BLCKSZ and MAXPGPATHLEN?
Byron Nikolaidis [Mon, 28 Feb 2000 00:23:18 +0000 (00:23 +0000)]
missing state transition
Bruce Momjian [Wed, 16 Feb 2000 23:07:31 +0000 (23:07 +0000)]
Package: postgresql
Version: 6.5.3-11
Severity: important
'char' is not a signed type by default on powerpc; therefore a character
can
never be equal to EOF (-1). A patch is attached.
Dan
/--------------------------------\ /--------------------------------\
| Daniel Jacobowitz |__| SCS Class of 2002 |
Bruce Momjian [Mon, 14 Feb 2000 12:33:19 +0000 (12:33 +0000)]
I suspect that you are not the person to send this to, but I wasn't sure
where else to mail it. I am the maintainer of unixODBC, and we have a
set of code in our project that started life as the Postgres windows
ODBC driver, which has been ported back to unix. Anyway I have just
fixed a memory leak in the driver, and I cant see any mention of the fix
being done in the main Postgres code, so I thougth I would let you know.
Its in the statement.c module, after the COMMIT statement has been
executed in SC_Execute, the code was
Nick Gorham
Byron Nikolaidis [Sun, 30 Jan 2000 21:14:25 +0000 (21:14 +0000)]
Added numeric and int8 types.
Bug fix for LongVarBinary -- begin transaction
Bruce Momjian [Mon, 10 Jan 2000 16:13:23 +0000 (16:13 +0000)]
Rename oid8 -> oidvector and int28 -> int2vector. Cleanup of *out functions.
Bruce Momjian [Mon, 10 Jan 2000 15:41:32 +0000 (15:41 +0000)]
Update int28out and out8out and _in_ functions to handle trailing zeros
properly.
Bruce Momjian [Wed, 5 Jan 2000 18:23:53 +0000 (18:23 +0000)]
Fix it's and its to be correct.
Bruce Momjian [Tue, 30 Nov 1999 02:44:09 +0000 (02:44 +0000)]
Rename readonly to onlyread in odbc. Use varargs properly.
Bruce Momjian [Mon, 29 Nov 1999 23:42:03 +0000 (23:42 +0000)]
Small patch which fixes the ODBC driver so it doesn't segfault if:
You have CommLog and Debug enabled
You encounter in error in any operation (SQLConnect/SQLExec).
Previously, the extra logging didn't check for NULL pointers
when trying to print some of the strings- the socket error
message could frequently be NULL by design (if there was no socket
error)
and Solaris does not handle NULLS passed to things like printf
("%s\n",string);
gracefully.
This basically duplicates the functionality found in Linux where passing
a null pointer
to printf prints "(NULL)". No very elegant, but the logging is for debug
only anyway.
Dirk Niggemann
Tom Lane [Mon, 25 Oct 1999 03:08:01 +0000 (03:08 +0000)]
Standardize on MAXPGPATH as the size of a file pathname buffer,
eliminating some wildly inconsistent coding in various parts of the
system. I set MAXPGPATH = 1024 in config.h.in. If anyone is really
convinced that there ought to be a configure-time test to set the
value, go right ahead ... but I think it's a waste of time.
Byron Nikolaidis [Mon, 25 Oct 1999 01:11:44 +0000 (01:11 +0000)]
bug fix for large objects (free)
Byron Nikolaidis [Fri, 3 Sep 1999 05:29:00 +0000 (05:29 +0000)]
driver v06-40-0007
Byron Nikolaidis [Fri, 3 Sep 1999 04:41:45 +0000 (04:41 +0000)]
driver v06-40-0007
Bruce Momjian [Fri, 9 Jul 1999 17:40:31 +0000 (17:40 +0000)]
Re-apply range check patch after fixing LIMIT_H test and defines.
Tom Lane [Wed, 30 Jun 1999 23:57:29 +0000 (23:57 +0000)]
Make sure symlinks for sharedlib get removed by 'make clean'.
Byron Nikolaidis [Thu, 13 May 1999 03:33:00 +0000 (03:33 +0000)]
Update driver to 6-40-0006
Bruce Momjian [Mon, 3 May 1999 19:10:45 +0000 (19:10 +0000)]
here are some patches for 6.5.0 which I already submitted but have never
been applied. The patches are in the .tar.gz attachment at the end:
varchar-array.patch this patch adds support for arrays of bpchar() and
varchar(), which where always missing from postgres.
These datatypes can be used to replace the _char4,
_char8, etc., which were dropped some time ago.
block-size.patch this patch fixes many errors in the parser and other
program which happen with very large query statements
(> 8K) when using a page size larger than 8192.
This patch is needed if you want to submit queries
larger than 8K. Postgres supports tuples up to 32K
but you can't insert them because you can't submit
queries larger than 8K. My patch fixes this problem.
The patch also replaces all the occurrences of `8192'
and `1<<13' in the sources with the proper constants
defined in include files. You should now never find
8192 hardwired in C code, just to make code clearer.
--
Massimo Dal Zotto
Bruce Momjian [Sat, 13 Feb 1999 23:22:44 +0000 (23:22 +0000)]
Change my-function-name-- to my_function_name, and optimizer renames.
Bruce Momjian [Wed, 3 Feb 1999 21:17:53 +0000 (21:17 +0000)]
Cleanup of source files where 'return' or 'var =' is alone on a line.
Bruce Momjian [Sun, 17 Jan 1999 06:19:44 +0000 (06:19 +0000)]
Apply Win32 patch from Horak Daniel.
Byron Nikolaidis [Fri, 8 Jan 1999 18:24:45 +0000 (18:24 +0000)]
Update 06-40-0004 -- Add Bookmark support!
Byron Nikolaidis [Wed, 6 Jan 1999 20:44:08 +0000 (20:44 +0000)]
Update 06-40-0003
Byron Nikolaidis [Tue, 5 Jan 1999 00:32:21 +0000 (00:32 +0000)]
Mini Update #2 -- final fixes for buffer lengths, null buffers, truncation
Byron Nikolaidis [Thu, 31 Dec 1998 00:26:44 +0000 (00:26 +0000)]
uncomment MYLOG to prevent warnings in compile
Byron Nikolaidis [Thu, 31 Dec 1998 00:26:06 +0000 (00:26 +0000)]
Mini update to fix SQLGetInfo to work properly (truncation, NULL)
Byron Nikolaidis [Tue, 29 Dec 1998 14:59:30 +0000 (14:59 +0000)]
Minor fixes to compile on unix for v6-40-0002
Byron Nikolaidis [Tue, 29 Dec 1998 01:49:58 +0000 (01:49 +0000)]
Update for version 6-40-0002 and re-merge Thomas' changes.
Byron Nikolaidis [Wed, 11 Nov 1998 21:54:01 +0000 (21:54 +0000)]
Update for version 06-40-0001
Thomas G. Lockhart [Wed, 4 Nov 1998 16:24:32 +0000 (16:24 +0000)]
Test for and handle NULL arguments to mylog() print statements.
Include definition for _IN_ADDR_T if INADDR_NONE is not defined.
Thomas G. Lockhart [Wed, 4 Nov 1998 16:22:09 +0000 (16:22 +0000)]
Somehow had the solaris template names reversed. Probably was something
fixed in src/configure.in a while ago.
Thomas G. Lockhart [Wed, 28 Oct 1998 17:09:22 +0000 (17:09 +0000)]
Fix macro declarations to allow disabling mylog() and qlog() on Unix boxes.
Fix spelling of "DIRSEPARATOR".
Thomas G. Lockhart [Wed, 28 Oct 1998 06:49:10 +0000 (06:49 +0000)]
Include appropriate flags for resolved shared library LDFLAGS_ODBC
to allow ODBC library to be linked.
Thomas G. Lockhart [Wed, 21 Oct 1998 05:39:19 +0000 (05:39 +0000)]
Include new Makefile.shlib from top level
when constructing standalone tarball.
Thomas G. Lockhart [Wed, 21 Oct 1998 05:23:36 +0000 (05:23 +0000)]
Arbitrary addition of a comment line to get ownership of file in the
cvs tree. Am trying to fix the permissions to allow file execution,
since I had damaged the permissions when transferring in with ftp.
Tom Lane [Mon, 19 Oct 1998 00:00:49 +0000 (00:00 +0000)]
Centralized shared-library build knowledge in a new file,
src/Makefile.shlib. Updated all the makefiles that try to build shlibs
to include that file instead of having duplicate (and mostly incomplete)
copies of shared-library options. It works on HPUX, a lot better than it
did before in fact, but there's a chance I broke some other platforms.
At least now you only have to fix one place not six...
Tom Lane [Sun, 18 Oct 1998 19:42:31 +0000 (19:42 +0000)]
run autoconf
Tom Lane [Sun, 18 Oct 1998 19:40:57 +0000 (19:40 +0000)]
Clean up shared makefile install procedures.
Get the permissions right, don't overwrite real files with symlinks, etc.
plpgsql and odbc still aren't fully up to speed, but at least they don't crash and burn...
Thomas G. Lockhart [Wed, 14 Oct 1998 16:09:32 +0000 (16:09 +0000)]
Remove $(DESTDIR) as a path prefix. $(POSTGRESDIR) is sufficient now.
Bruce Momjian [Fri, 9 Oct 1998 21:28:50 +0000 (21:28 +0000)]
major/minor shared name cleanup
Thomas G. Lockhart [Fri, 9 Oct 1998 07:04:53 +0000 (07:04 +0000)]
Changes to support standalone installation.
Thomas G. Lockhart [Wed, 7 Oct 1998 06:49:22 +0000 (06:49 +0000)]
Clean up for configuration from the Postgres main configure script.
Use @top-srcdir@ to find the right Makefile.global and use ODBCSRCDIR
to point to this local directory.
Move non-platform-specific stuff to outside the if clauses.
Still need to move all platform-specific stuff to the templates.
Thomas G. Lockhart [Tue, 6 Oct 1998 05:58:41 +0000 (05:58 +0000)]
Update source code to Byron's v6.30.0250 sources plus minor cleanup
to get rid of unused variables.
Get clean compile on Linux (Thomas and Gerald).
Implement autoconf/configure for standalone builds and use the existing
autoconf/configure system when in the Postgres source tree.
Code tests and functions with ApplixWare-4.4.1beta on a Linux box.
Changes should be backward compatible with WIN32 but still needs testing.
Bruce Momjian [Tue, 1 Sep 1998 03:29:00 +0000 (03:29 +0000)]
Renaming cleanup, no pgindent yet.
Byron Nikolaidis [Wed, 22 Jul 1998 23:47:48 +0000 (23:47 +0000)]
Version 06-30-0248
Bruce Momjian [Mon, 20 Jul 1998 16:57:16 +0000 (16:57 +0000)]
Cleanup use of 16 that should be NAMEDATALEN.
Bruce Momjian [Mon, 13 Jul 1998 16:35:04 +0000 (16:35 +0000)]
Inline function, rename libpq variablees, change lrel to lockrel.
Byron Nikolaidis [Tue, 16 Jun 1998 21:29:19 +0000 (21:29 +0000)]
Update to v.0246
Byron Nikolaidis [Mon, 8 Jun 1998 20:55:33 +0000 (20:55 +0000)]
Official V.0244 (missed a file)
Byron Nikolaidis [Mon, 8 Jun 1998 16:15:12 +0000 (16:15 +0000)]
Update driver to official 6.30.0244 release.
Byron Nikolaidis [Wed, 3 Jun 1998 20:33:45 +0000 (20:33 +0000)]
Update odbc driver to current version V.0244
Marc G. Fournier [Wed, 15 Apr 1998 21:56:54 +0000 (21:56 +0000)]
From: David Hartwig <daveh@insightdist.com>
Marc, I overlooked this file it should be included in the source. Oops
Also the binary file is only 1.2 meg not 2.5 meg. Oops again.
Marc G. Fournier [Mon, 13 Apr 1998 15:02:05 +0000 (15:02 +0000)]
Replace old PostODBC driver with new one...
This one is based on an older PostODBC driver, rewritten and maintained by
InsightDist(?)