| Commit message (Collapse) | Author | Age |
|
|
|
| |
No more shift/reduce conflicts. Also all other bugs I know about are fixed.
|
|
|
|
| |
From: t-ishii@sra.co.jp
|
|
|
|
|
|
|
|
|
|
|
|
| |
This patch will...
1. Remove the "-Wall" option from the ecpg/lib and ecpg/preproc Makefile.
2. Remove the addition of $(SRCDIR)/include and-or $(SRCDIR)/backend from
ecpg/lib, ecpg/preproc, libpq and utils Makefiles. Already in CFLAGS...
3. Set MK_NO_LORDER and RANLIB in Makefile.aix to avoid a couple of extra
steps taken care of by the 'ld' command anyways.
|
|
|
|
|
| |
Sorry, I just repeated the last call and send out a stupid should be empty
mail. Anyway, my last patch missed one change:
|
|
|
|
| |
Subject: [PATCHES] ecpg: correct whenever statement
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
+
+ - use char[] as string not as array of bytes that is integers
+
+ Sun Feb 22 16:37:36 CET 1998
+
+ - use long for all size variables
+ - added execute immediate statement
+
+ Sun Feb 22 20:41:32 CET 1998
+
+ - use varcharsize = 1 for all simple types, 0 means pointer, > 1
+ means array if type is char resp. unsigned char
+
+ Thu Feb 24 12:26:12 CET 1998
+
+ - allow 'go to' in whenever statement as well as 'goto'
+ - new argument 'stop' for whenever statement
From: Michael Meskes <meskes@topsystem.de>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Ok. I have decided to use:
#if defined(sun) && if defined(sparc) && !defined(__svr4)
instead of defined(sunos4). interfaces/libpq/libpq-fe.h and
include/c.h have been modified(see included patches).
Another porblems I have found are:
o SunOS lacks strtoul(). to fix this I stole strtoul.c from FreeBSD
and place it under backend/port. necessary modifications have been
also made to backend/port/Makefile.in, include/config.h.in and
configure.in (see included patches).
|
|
|
|
| |
From: Frank Ridderbusch <ridderbusch.pad@sni.de>
|
|
|
|
| |
From: Darren King <darrenk@insightdist.com>
|
| |
|
| |
|
|
|
|
|
|
| |
of -1 for varchar's.
From: CNT systemen BV <cntsys@cistron.nl>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
below is the patch to have views to override the permission
checks for the accessed tables. Now we can do the following:
CREATE VIEW db_user AS SELECT
usename,
usesysid,
usecreatedb,
usetrace,
usecatupd,
'**********'::text as passwd,
valuntil
FROM pg_user;
REVOKE ALL ON pg_user FROM public;
REVOKE ALL ON db_user FROM public;
GRANT SELECT ON db_user TO public;
|
| |
|
| |
|
|
|
|
|
| |
Please remove src/interfaces/ecpg/prproc/y.tab.h from cvs. It is generated
by make anyway.
|
|
|
|
| |
From: AA van Raalte <alvin@camberlo.demon.co.uk>
|
|
|
|
| |
Subject: [PATCHES] one small fix for ecpg
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Here's my next patch. this one should fix some more bugs. ecpg now fully
understands the whenever statement.
|
| |
|
|
|
|
| |
in the usual man page source directory anyway. Source tree now builds.
|
|
|
|
|
|
|
|
|
| |
any other, example program.
I have tracked this down to a call to PQfinish() in ECPGfinish()
that occurs before any connection is established.
From: Keith Parks <emkxp01@mtcc.demon.co.uk>
|
|
|
|
| |
From: Michael Meskes <meskes@topsystem.de>
|
| |
|
|
|
|
| |
From: Michael Meskes <meskes@topsystem.de>
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Apart from this Makefile hack, all I've done is to make dynamically
loaded code modules fail properly (as was already done for __mips__,
although I think this is too loose: I believe NetBSD for the pmax can
do dynamic linking), and to add test-and-set lock handling. As Bruce
suggested, this is done in a maximally efficient inlined way: I was
not aware that this code was so important, speed-wise.
|
|
|
|
| |
Here's the ecpg patch for the local variables bug I reported earlier:
|
| |
|
| |
|
|
|
|
| |
pull their data/info from Makefile.global
|
|
|
|
| |
Makefile, as it isn't appropriate for GNUmake
|
| |
|
|
|
|
| |
Cleanups for ecpg, as well as a missing patch so that its configured in
|
|
|
|
| |
Cleanups for ecpg, as well as a missing patch so that its configured in
|
|
|
|
| |
Remove "temp" configure files
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
This patch fixes the following:
* Fixes minor bug found in DatabaseMetaData.getTables() where it doesn't
handle default table types.
* It now reports an error if the client opens a database using
properties, and either the user or password properties are missing. This
should make the recent problem with Servlets easier to find.
* Commented out obsolete property in Driver.getPropertyInfo()
|
|
|
|
|
|
| |
source here. It goes in the src/interfaces/jdbc/postgresql/util directory
Marc, can you make sure this is in the distribution, Thanks
|
|
|
|
|
| |
I have implemented a better user interface (well part of) so you can use it
as expected. As usual there are some bug fixes. :-)
|
|
|
|
|
|
|
|
|
|
| |
Well this is not really a patch. But I mananged to get Linus' old Postgres95
precompiler to compile and work with PostgreSQL. The next step would be to
collect bug/missing feature reports and to put it into the distribution so
that it is made with the standard make procedure.
Warning! So far it is not tested much and it does not install correctly. But
I was able to create a small binary with it.
|