OSDN Git Service

pg-rex/syncrep.git
26 years agoFix for backward cursors with ORDER BY.
Vadim B. Mikheev [Wed, 15 Oct 1997 06:36:36 +0000 (06:36 +0000)]
Fix for backward cursors with ORDER BY.

26 years agoSmall updates for v6.2.1.
Thomas G. Lockhart [Wed, 15 Oct 1997 02:34:51 +0000 (02:34 +0000)]
Small updates for v6.2.1.

26 years agoPut in some migration guides. Should have had these for each release.
Thomas G. Lockhart [Wed, 15 Oct 1997 02:32:29 +0000 (02:32 +0000)]
Put in some migration guides. Should have had these for each release.

26 years agoInclude SQL/92 string continuation across newlines.
Thomas G. Lockhart [Wed, 15 Oct 1997 01:12:21 +0000 (01:12 +0000)]
Include SQL/92 string continuation across newlines.
Allows the following example:
  select 'first string'
  '---'
  'last string';
 to be output as 'first string---last string'.

26 years agoFix final function for cash avg() aggregate.
Thomas G. Lockhart [Wed, 15 Oct 1997 01:08:25 +0000 (01:08 +0000)]
Fix final function for cash avg() aggregate.
 Wrong function referenced in previous versions.

26 years agoDecrement relation reference count incremented in
Vadim B. Mikheev [Sun, 12 Oct 1997 07:12:03 +0000 (07:12 +0000)]
Decrement relation reference count incremented in
RelationIdCacheGetRelation() to flush relations from cache
in commit time.

26 years agoDEFAULT is handled by analyze.c now.
Vadim B. Mikheev [Sun, 12 Oct 1997 07:09:20 +0000 (07:09 +0000)]
DEFAULT is handled by analyze.c now.

26 years agoUse P_TYPE rather than TYPE_P (which will be the name in the next release).
Thomas G. Lockhart [Thu, 9 Oct 1997 05:43:59 +0000 (05:43 +0000)]
Use P_TYPE rather than TYPE_P (which will be the name in the next release).

26 years agoAllow both TIME and TYPE as column and table names.
Thomas G. Lockhart [Thu, 9 Oct 1997 05:35:30 +0000 (05:35 +0000)]
Allow both TIME and TYPE as column and table names.

26 years agoClean up function declarations for the boolean type package
Thomas G. Lockhart [Thu, 9 Oct 1997 05:07:25 +0000 (05:07 +0000)]
Clean up function declarations for the boolean type package
 to use bool as the type for arguments and return values.

26 years agoAllow 't', 'T', and even/odd ASCII characters to denote true/false
Thomas G. Lockhart [Thu, 9 Oct 1997 05:06:12 +0000 (05:06 +0000)]
Allow 't', 'T', and even/odd ASCII characters to denote true/false
 rather than just 't' and 'T'.  This allows yes/no and 1/0
 to be interpreted as one might expect.
Clean up function declarations to use bool as the type for arguments
 and return values.

26 years agoSupport special values 'now', 'current', etc on output.
Thomas G. Lockhart [Thu, 9 Oct 1997 05:02:17 +0000 (05:02 +0000)]
Support special values 'now', 'current', etc on output.

26 years agoAllow TIME in column and table names (SQL/92 non-reserved word).
Thomas G. Lockhart [Thu, 9 Oct 1997 05:00:54 +0000 (05:00 +0000)]
Allow TIME in column and table names (SQL/92 non-reserved word).

26 years agoFix error in ordering of arguments.
Thomas G. Lockhart [Thu, 9 Oct 1997 04:59:37 +0000 (04:59 +0000)]
Fix error in ordering of arguments.

26 years agoUpdate to version 0.51.
Bruce Momjian [Fri, 3 Oct 1997 23:11:26 +0000 (23:11 +0000)]
Update to version 0.51.

26 years agoWe never do remember to up the PG_VERSION number, do we? :(
Marc G. Fournier [Fri, 3 Oct 1997 17:31:29 +0000 (17:31 +0000)]
We never do remember to up the PG_VERSION number, do we? :(

26 years agoUpdate to 0.5.
Bruce Momjian [Fri, 3 Oct 1997 15:47:17 +0000 (15:47 +0000)]
Update to 0.5.

26 years agoUpdate machine-specific FAQs. Too late.
Bruce Momjian [Fri, 3 Oct 1997 15:38:31 +0000 (15:38 +0000)]
Update machine-specific FAQs.  Too late.

26 years agoLinux/alpha patch from Dan Maynard
Bruce Momjian [Fri, 3 Oct 1997 15:27:18 +0000 (15:27 +0000)]
Linux/alpha patch from Dan Maynard

26 years agoFrom JM de Lauwereyns (jmlauwer@icdc.caissedesdepots.fr):
Thomas G. Lockhart [Fri, 3 Oct 1997 13:10:06 +0000 (13:10 +0000)]
From JM de Lauwereyns (jmlauwer@icdc.caissedesdepots.fr):
lconv is already taken as a struct identifier defined in a /usr/include file.
Only has an effect with USE_LOCALE enabled.
(Apparently unique to AIX and/or AIX compiler? thomas)

26 years agoSparc lock fix for Linux/netbsd.
Bruce Momjian [Thu, 2 Oct 1997 18:32:58 +0000 (18:32 +0000)]
Sparc lock fix for Linux/netbsd.

26 years agoUpdates for release
Vadim B. Mikheev [Thu, 2 Oct 1997 18:17:56 +0000 (18:17 +0000)]
Updates for release

26 years agoNew edition by D'Arcy and me.
Vadim B. Mikheev [Thu, 2 Oct 1997 18:03:09 +0000 (18:03 +0000)]
New edition by D'Arcy and me.

26 years agoGeneral function for SERIAL/IDENTITY/AUTOINCREMENT feature.
Vadim B. Mikheev [Thu, 2 Oct 1997 18:01:57 +0000 (18:01 +0000)]
General function for SERIAL/IDENTITY/AUTOINCREMENT feature.
Handle INSERT event in timetravel().

26 years agoLast changes.
Vadim B. Mikheev [Thu, 2 Oct 1997 18:00:34 +0000 (18:00 +0000)]
Last changes.

26 years ago+ MOVE
Vadim B. Mikheev [Thu, 2 Oct 1997 13:58:06 +0000 (13:58 +0000)]
+ MOVE
+ CREATE TRIGGER
Little changes for create table.

26 years agoDump DEFAULT, CHECK, Triggers.
Vadim B. Mikheev [Thu, 2 Oct 1997 13:57:07 +0000 (13:57 +0000)]
Dump DEFAULT, CHECK, Triggers.
Fix BASETYPE for aggregates with sfunc2 only.

26 years agoFix \ handling
Vadim B. Mikheev [Thu, 2 Oct 1997 13:52:29 +0000 (13:52 +0000)]
Fix \ handling

26 years agoMOVE command
Vadim B. Mikheev [Thu, 2 Oct 1997 03:15:11 +0000 (03:15 +0000)]
MOVE command

26 years agoA word about constraint nature of DEFAULT.
Vadim B. Mikheev [Thu, 2 Oct 1997 02:50:22 +0000 (02:50 +0000)]
A word about constraint nature of DEFAULT.

26 years agoSpace pad it a little bit...improve readability...
Marc G. Fournier [Thu, 2 Oct 1997 01:52:25 +0000 (01:52 +0000)]
Space pad it a little bit...improve readability...

26 years agoFirst attempt at an installation completion message suggesting to keep
Thomas G. Lockhart [Thu, 2 Oct 1997 01:05:16 +0000 (01:05 +0000)]
First attempt at an installation completion message suggesting to keep
 in touch with the Web site for updates etc.

26 years agoBring in a "registration" file to be printed out after the user has
Marc G. Fournier [Thu, 2 Oct 1997 00:59:35 +0000 (00:59 +0000)]
Bring in a "registration" file to be printed out after the user has
performed a 'make install'

Uses 'more', which should be standard across all systems, I hope?

26 years agoDocument which is default for:
Marc G. Fournier [Thu, 2 Oct 1997 00:50:28 +0000 (00:50 +0000)]
Document which is default for:

enable-hba/enable-cassert/enable-locale

26 years agoUpdate manuals for 6.2 release.
Bruce Momjian [Wed, 1 Oct 1997 19:42:53 +0000 (19:42 +0000)]
Update manuals for 6.2 release.

26 years agoUpdate manuals for 6.2 release.
Bruce Momjian [Wed, 1 Oct 1997 19:30:59 +0000 (19:30 +0000)]
Update manuals for 6.2 release.

26 years agoUpdate manuals for 6.2 release.
Bruce Momjian [Wed, 1 Oct 1997 19:24:21 +0000 (19:24 +0000)]
Update manuals for 6.2 release.

26 years agoUpdate manuals for 6.2 release.
Bruce Momjian [Wed, 1 Oct 1997 19:14:35 +0000 (19:14 +0000)]
Update manuals for 6.2 release.

26 years agoUpdate manuals for 6.2 release.
Bruce Momjian [Wed, 1 Oct 1997 19:08:48 +0000 (19:08 +0000)]
Update manuals for 6.2 release.

26 years agoUpdate manuals for 6.2 release.
Bruce Momjian [Wed, 1 Oct 1997 18:57:48 +0000 (18:57 +0000)]
Update manuals for 6.2 release.

26 years agoUpdate manuals for 6.2 release.
Bruce Momjian [Wed, 1 Oct 1997 18:53:28 +0000 (18:53 +0000)]
Update manuals for 6.2 release.

26 years agoUpdate PQntuples now returns rows affected.
Bruce Momjian [Wed, 1 Oct 1997 18:14:53 +0000 (18:14 +0000)]
Update PQntuples now returns rows affected.

26 years agoDocument NOT NULL for table creation.
Thomas G. Lockhart [Wed, 1 Oct 1997 17:05:16 +0000 (17:05 +0000)]
Document NOT NULL for table creation.
Clarify usage of date_part() for timespan data type.

26 years agoUpdate to 0.4.
Bruce Momjian [Wed, 1 Oct 1997 15:38:59 +0000 (15:38 +0000)]
Update to 0.4.

26 years agoUpdate to 0.4 version.
Bruce Momjian [Wed, 1 Oct 1997 15:13:14 +0000 (15:13 +0000)]
Update to 0.4 version.

26 years agoFix permits.
Bruce Momjian [Tue, 30 Sep 1997 18:40:37 +0000 (18:40 +0000)]
Fix permits.

26 years agoAdd support for NetBSD/sparc.
Bruce Momjian [Tue, 30 Sep 1997 16:21:42 +0000 (16:21 +0000)]
Add support for NetBSD/sparc.

26 years agoHPUX 10 fix.
Bruce Momjian [Tue, 30 Sep 1997 15:19:32 +0000 (15:19 +0000)]
HPUX 10 fix.

26 years agoLittle changes.
Vadim B. Mikheev [Tue, 30 Sep 1997 09:50:28 +0000 (09:50 +0000)]
Little changes.

26 years agoSTATEMENT triggers are not implemented - elog (WARN).
Vadim B. Mikheev [Tue, 30 Sep 1997 09:49:54 +0000 (09:49 +0000)]
STATEMENT triggers are not implemented - elog (WARN).

26 years agoTrigger programming guide.
Vadim B. Mikheev [Tue, 30 Sep 1997 09:49:10 +0000 (09:49 +0000)]
Trigger programming guide.
Description of data changes visibility added.

26 years agoCleanup.
Bruce Momjian [Tue, 30 Sep 1997 03:28:02 +0000 (03:28 +0000)]
Cleanup.

26 years agoVadim's updates to HISTORY file.
Bruce Momjian [Tue, 30 Sep 1997 03:12:43 +0000 (03:12 +0000)]
Vadim's updates to HISTORY file.

26 years agoUpdate for 6.2 release.
Bruce Momjian [Tue, 30 Sep 1997 03:01:39 +0000 (03:01 +0000)]
Update for 6.2 release.

26 years agoUpdate readme.
Bruce Momjian [Tue, 30 Sep 1997 02:47:27 +0000 (02:47 +0000)]
Update readme.

26 years agoUpdate pgtcl to 0.3. Update README.
Bruce Momjian [Tue, 30 Sep 1997 00:22:43 +0000 (00:22 +0000)]
Update pgtcl to 0.3.  Update README.

26 years agoUpdate to the newest version before beta12, and add a README file
Marc G. Fournier [Mon, 29 Sep 1997 21:06:48 +0000 (21:06 +0000)]
Update to the newest version before beta12, and add a README file
from Constantin...

26 years agoFrom: Peter T Mount <patches@maidast.demon.co.uk>
Marc G. Fournier [Mon, 29 Sep 1997 20:11:51 +0000 (20:11 +0000)]
From: Peter T Mount <patches@maidast.demon.co.uk>

This patch fixes a few results in DatabaseMetaData, and updates the README
and TODO files (the later being a new file).

The TODO file lists the things that need to be looked into after 6.2 is
released, and describes the problem with Large Objects.

26 years agoBring in Constantin's PGaccess TCL interface (v0.21)
Marc G. Fournier [Mon, 29 Sep 1997 20:06:06 +0000 (20:06 +0000)]
Bring in Constantin's PGaccess TCL interface (v0.21)

26 years agoSPI programming guide.
Vadim B. Mikheev [Mon, 29 Sep 1997 08:29:09 +0000 (08:29 +0000)]
SPI programming guide.

26 years agoFix error indicator for SPI_getvalue() and SPI_getbinval()
Vadim B. Mikheev [Mon, 29 Sep 1997 06:28:45 +0000 (06:28 +0000)]
Fix error indicator for SPI_getvalue() and SPI_getbinval()

26 years agoMOVE implementation (added bool ismove to FetchStmt).
Vadim B. Mikheev [Mon, 29 Sep 1997 06:01:46 +0000 (06:01 +0000)]
MOVE implementation (added bool ismove to FetchStmt).

26 years agoMOVE implementation.
Vadim B. Mikheev [Mon, 29 Sep 1997 05:59:16 +0000 (05:59 +0000)]
MOVE implementation.

26 years agoHPUX patches from Vladimir Turin.
Bruce Momjian [Mon, 29 Sep 1997 03:27:18 +0000 (03:27 +0000)]
HPUX patches from Vladimir Turin.

26 years agoCleanup tmp files for ccsym.
Bruce Momjian [Sun, 28 Sep 1997 16:57:44 +0000 (16:57 +0000)]
Cleanup tmp files for ccsym.

26 years agoFrom: Darren King <darrenk@insightdist.com>
Marc G. Fournier [Sun, 28 Sep 1997 10:10:36 +0000 (10:10 +0000)]
From: Darren King <darrenk@insightdist.com>

I asked for this a long time ago and Frank Dana recently has
indicated that using lbsd on aix breaks the timezone code.

26 years agoFrom: CNT systemen BV <cntsys@cistron.nl>
Marc G. Fournier [Sun, 28 Sep 1997 10:05:15 +0000 (10:05 +0000)]
From: CNT systemen BV <cntsys@cistron.nl>

I've found a problem in the Postgresql jdbc driver.
"ReceiveInteger" shifts a received byte right instead of left.
This means that only the least significant byte is read into the int.

Reviewed by: Peter T Mount <patches@maidast.demon.co.uk>

26 years agoccsym cleanup.
Bruce Momjian [Sun, 28 Sep 1997 04:23:04 +0000 (04:23 +0000)]
ccsym cleanup.

26 years agoChanged location of libpgtcl stuff.
Bruce Momjian [Sat, 27 Sep 1997 19:35:04 +0000 (19:35 +0000)]
Changed location of libpgtcl stuff.

26 years agoChanged location of libpgtcl stuff.
Bruce Momjian [Sat, 27 Sep 1997 19:28:40 +0000 (19:28 +0000)]
Changed location of libpgtcl stuff.

26 years agoChanged location of libpgtcl stuff.
Bruce Momjian [Sat, 27 Sep 1997 19:13:56 +0000 (19:13 +0000)]
Changed location of libpgtcl stuff.

26 years agoCleanup for find_keywords.
Bruce Momjian [Sat, 27 Sep 1997 17:25:48 +0000 (17:25 +0000)]
Cleanup for find_keywords.

26 years agoCleanup for find_keywords.
Bruce Momjian [Sat, 27 Sep 1997 17:22:05 +0000 (17:22 +0000)]
Cleanup for find_keywords.

26 years agoAdd fiel to list keywords.
Bruce Momjian [Sat, 27 Sep 1997 16:42:21 +0000 (16:42 +0000)]
Add fiel to list keywords.

26 years agoMake GetAttributeByNum visible again for external use.
Bruce Momjian [Sat, 27 Sep 1997 14:37:21 +0000 (14:37 +0000)]
Make GetAttributeByNum visible again for external use.

26 years agoAdd information about SQL92 syntax enhancements.
Thomas G. Lockhart [Sat, 27 Sep 1997 14:28:46 +0000 (14:28 +0000)]
Add information about SQL92 syntax enhancements.
Rearrange the v6.2 enhancements section to put visible changes first.

26 years agoUpdate catalog lists for v6.2.
Thomas G. Lockhart [Sat, 27 Sep 1997 04:37:33 +0000 (04:37 +0000)]
Update catalog lists for v6.2.
Add documentation of some text functions.
Add descriptions of some new SQL/92-compatible string functions.

26 years agoUse "man drop" as an introduction to all drop commands.
Thomas G. Lockhart [Sat, 27 Sep 1997 04:36:02 +0000 (04:36 +0000)]
Use "man drop" as an introduction to all drop commands.
Create explicit drop_table man page (copied from old drop man page).

26 years agoManual page cleanup.
Bruce Momjian [Sat, 27 Sep 1997 03:58:29 +0000 (03:58 +0000)]
Manual page cleanup.

26 years agoUpdate manual pages.
Bruce Momjian [Sat, 27 Sep 1997 03:14:20 +0000 (03:14 +0000)]
Update manual pages.

26 years agoThis gets things to compile...past this I'll have to test from home, or
Marc G. Fournier [Sat, 27 Sep 1997 00:05:23 +0000 (00:05 +0000)]
This gets things to compile...past this I'll have to test from home, or
someone will have to tell me

26 years agoNothing in this file right now, but will contain appropriate 'chmod's
Marc G. Fournier [Fri, 26 Sep 1997 22:06:30 +0000 (22:06 +0000)]
Nothing in this file right now, but will contain appropriate 'chmod's
so that permissions are set for the end release...

26 years agoAIX float fix.
Bruce Momjian [Fri, 26 Sep 1997 20:32:02 +0000 (20:32 +0000)]
AIX float fix.

26 years agoFix for psort temp file names, from Vadim.
Bruce Momjian [Fri, 26 Sep 1997 20:05:47 +0000 (20:05 +0000)]
Fix for psort temp file names, from Vadim.

26 years agoInclude information on new DEFAULT and CONSTRAINT clauses.
Thomas G. Lockhart [Fri, 26 Sep 1997 15:21:27 +0000 (15:21 +0000)]
Include information on new DEFAULT and CONSTRAINT clauses.

26 years agoInclude references to other "drop" man pages.
Thomas G. Lockhart [Fri, 26 Sep 1997 15:20:12 +0000 (15:20 +0000)]
Include references to other "drop" man pages.

26 years agoInitial docs for Vadim's new trigger capabilities.
Thomas G. Lockhart [Fri, 26 Sep 1997 15:13:09 +0000 (15:13 +0000)]
Initial docs for Vadim's new trigger capabilities.

26 years agoFix SUBSTRING(str FROM int TO int) parsing.
Thomas G. Lockhart [Fri, 26 Sep 1997 15:09:11 +0000 (15:09 +0000)]
Fix SUBSTRING(str FROM int TO int) parsing.

26 years agoScripts to run queries and data.
Vadim B. Mikheev [Fri, 26 Sep 1997 14:57:36 +0000 (14:57 +0000)]
Scripts to run queries and data.

26 years agoSome results.
Vadim B. Mikheev [Fri, 26 Sep 1997 14:55:44 +0000 (14:55 +0000)]
Some results.

26 years agoStart with performance suite.
Vadim B. Mikheev [Fri, 26 Sep 1997 14:55:21 +0000 (14:55 +0000)]
Start with performance suite.

26 years agoReturn error if char *query is null in SPI_prepare()
Vadim B. Mikheev [Fri, 26 Sep 1997 13:57:39 +0000 (13:57 +0000)]
Return error if char *query is null in SPI_prepare()

26 years agoGet these two files finally committed for Peter...sorry for delay :(
Marc G. Fournier [Fri, 26 Sep 1997 08:22:21 +0000 (08:22 +0000)]
Get these two files finally committed for Peter...sorry for delay :(

26 years ago*** empty log message ***
Edmund Mergl [Thu, 25 Sep 1997 21:15:04 +0000 (21:15 +0000)]
*** empty log message ***

26 years agoBack out inclusion of postgres.h.
Bruce Momjian [Thu, 25 Sep 1997 16:52:23 +0000 (16:52 +0000)]
Back out inclusion of postgres.h.

26 years agoMassive examples fix from Nicola Bernardelli
Bruce Momjian [Thu, 25 Sep 1997 16:35:52 +0000 (16:35 +0000)]
Massive examples fix from Nicola Bernardelli

26 years agoFix for libpgtcl from Constantin Teodorescu.
Bruce Momjian [Thu, 25 Sep 1997 15:48:51 +0000 (15:48 +0000)]
Fix for libpgtcl from Constantin Teodorescu.

26 years agoTatsuo's patch to fix alignment problems in structure for RISC machines.
Thomas G. Lockhart [Thu, 25 Sep 1997 14:11:42 +0000 (14:11 +0000)]
Tatsuo's patch to fix alignment problems in structure for RISC machines.

26 years agoOne more change to recover v6.1.1 escaped-text input behavior.
Thomas G. Lockhart [Thu, 25 Sep 1997 14:10:23 +0000 (14:10 +0000)]
One more change to recover v6.1.1 escaped-text input behavior.
Should be changed for v6.3!

26 years agoDisable checking for zero or one points with deeper parens on input.
Thomas G. Lockhart [Thu, 25 Sep 1997 14:09:04 +0000 (14:09 +0000)]
Disable checking for zero or one points with deeper parens on input.
 Polygon input would not accept single-point polygon output and dump.