]> granicus.if.org Git - postgresql/log
postgresql
24 years agoRemove gratuitous redefinitions of BLCKSZ.
Tom Lane [Sat, 23 Oct 1999 03:28:58 +0000 (03:28 +0000)]
Remove gratuitous redefinitions of BLCKSZ.

24 years agoLook Ma, no MAX_PARSE_BUFFER! (At least not in the backend.
Tom Lane [Sat, 23 Oct 1999 03:13:33 +0000 (03:13 +0000)]
Look Ma, no MAX_PARSE_BUFFER!  (At least not in the backend.
pg_dump and interfaces/odbc still need some work.)

24 years agoBackup psql banner change.
Bruce Momjian [Sat, 23 Oct 1999 01:31:32 +0000 (01:31 +0000)]
Backup psql banner change.

24 years agoRemove fixed-size literal buffer from ecpg's lexer (same
Tom Lane [Fri, 22 Oct 1999 23:14:50 +0000 (23:14 +0000)]
Remove fixed-size literal buffer from ecpg's lexer (same
fix recently applied to backend's lexer).  I see that YY_USES_REJECT
still gets defined for this lexer, which means it's going to have trouble
parsing really long tokens.  Not sure if it's worth doing anything about
that or not; I don't have the interest right now to understand why
ecpg's additions to the syntax cause this problem...

24 years agoRemove libpq++ todo item.
Bruce Momjian [Fri, 22 Oct 1999 19:13:39 +0000 (19:13 +0000)]
Remove libpq++ todo item.

24 years agoThis *should* fix the large binary object problem in libpq++ from the
Bruce Momjian [Fri, 22 Oct 1999 19:05:02 +0000 (19:05 +0000)]
This *should* fix the large binary object problem in libpq++ from the
TODO list.

Vince

24 years agoI have a patch for postgresql-snapshot(1999-10-22).
Bruce Momjian [Fri, 22 Oct 1999 11:51:35 +0000 (11:51 +0000)]
I have a patch for postgresql-snapshot(1999-10-22).

This patch fix a TODO list item.
* require SELECT DISTINCT target list to have all ORDER BY columns

example
ogawa=> select distinct x from t1 order by y;
ERROR:  ORDER BY columns must appear in SELECT DISTINCT target list

---
Atsushi Ogawa

24 years agoUpdate TODO list.
Bruce Momjian [Fri, 22 Oct 1999 11:51:12 +0000 (11:51 +0000)]
Update TODO list.

24 years agoAnother day, another MAX_QUERY_SIZE dependency zapped.
Tom Lane [Fri, 22 Oct 1999 02:08:37 +0000 (02:08 +0000)]
Another day, another MAX_QUERY_SIZE dependency zapped.

24 years agoUpdate TODO list.
Bruce Momjian [Thu, 21 Oct 1999 16:58:49 +0000 (16:58 +0000)]
Update TODO list.

24 years agoBugfix for CREATE RULE invoked via SPI --- from Hiroshi,
Tom Lane [Thu, 21 Oct 1999 02:33:25 +0000 (02:33 +0000)]
Bugfix for CREATE RULE invoked via SPI --- from Hiroshi,
23 Jul 99.  Not sure why this didn't get applied before...

24 years agoRemove fixed-size buffers in rule storage routine.
Tom Lane [Thu, 21 Oct 1999 01:46:24 +0000 (01:46 +0000)]
Remove fixed-size buffers in rule storage routine.

24 years agochange issue to information in banner
Bruce Momjian [Thu, 21 Oct 1999 01:24:53 +0000 (01:24 +0000)]
change issue to information in banner

24 years agoMake psql startup banner cleaner.
Bruce Momjian [Thu, 21 Oct 1999 00:43:46 +0000 (00:43 +0000)]
Make psql startup banner cleaner.

24 years agoBufFileSeek's behavior at segment boundaries wasn't what
Tom Lane [Tue, 19 Oct 1999 02:34:45 +0000 (02:34 +0000)]
BufFileSeek's behavior at segment boundaries wasn't what
logfile.c wanted ... seems easier to fix BufFileSeek.

24 years agoUpdate \dT again.
Bruce Momjian [Mon, 18 Oct 1999 14:14:04 +0000 (14:14 +0000)]
Update \dT again.

24 years agoMore \dT cleanup
Bruce Momjian [Mon, 18 Oct 1999 14:07:49 +0000 (14:07 +0000)]
More \dT cleanup

24 years agoClean up \dT display.
Bruce Momjian [Mon, 18 Oct 1999 13:44:24 +0000 (13:44 +0000)]
Clean up \dT display.

24 years agoMake bpchar == char() clearer in \dT display.
Bruce Momjian [Mon, 18 Oct 1999 11:36:45 +0000 (11:36 +0000)]
Make bpchar == char() clearer in \dT display.

24 years agoDrive a stake through the heart of the last use of MAX_PARSE_BUFFER
Tom Lane [Mon, 18 Oct 1999 03:32:29 +0000 (03:32 +0000)]
Drive a stake through the heart of the last use of MAX_PARSE_BUFFER
in the backend.  Still a few stragglers, but we're getting closer to
being rid of query length limits...

24 years agoRemove fixed-size literal buffer from scan.l, and repair
Tom Lane [Mon, 18 Oct 1999 02:42:31 +0000 (02:42 +0000)]
Remove fixed-size literal buffer from scan.l, and repair
boundary-condition bug in myinput() which caused flex scanner to fail
on tokens larger than a bufferload.  Turns out flex doesn't want null-
terminated input ... and if it gives you a 1-character buffer, you'd
better supply a character, not a null, lest you be thought to be
reporting end of input.

24 years agoUpdate TODO list.
Bruce Momjian [Mon, 18 Oct 1999 01:12:51 +0000 (01:12 +0000)]
Update TODO list.

24 years agoExcept_Intersect_Rewrite() forgot to move LIMIT info to new
Tom Lane [Sun, 17 Oct 1999 23:50:43 +0000 (23:50 +0000)]
Except_Intersect_Rewrite() forgot to move LIMIT info to new
topmost SELECT node after rearranging query tree.

24 years agoChange fd.c so that temp files are closed and deleted at
Tom Lane [Sun, 17 Oct 1999 23:09:02 +0000 (23:09 +0000)]
Change fd.c so that temp files are closed and deleted at
proc_exit time.  I discovered that if the frontend closes the connection
when you're inside a transaction block, there is nothing ensuring that
temp files go away ... I wonder whether proc_exit ought to try to do an
explicit transaction abort?

24 years agoRemove now-dead sort modules.
Tom Lane [Sun, 17 Oct 1999 22:19:07 +0000 (22:19 +0000)]
Remove now-dead sort modules.

24 years agoFinal stage of psort reconstruction work: replace psort.c with
Tom Lane [Sun, 17 Oct 1999 22:15:09 +0000 (22:15 +0000)]
Final stage of psort reconstruction work: replace psort.c with
a generalized module 'tuplesort.c' that can sort either HeapTuples or
IndexTuples, and is not tied to execution of a Sort node.  Clean up
memory leakages in sorting, and replace nbtsort.c's private implementation
of mergesorting with calls to tuplesort.c.

24 years agoActually, nodeMergejoin shouldn't include psort.h at all...
Tom Lane [Sun, 17 Oct 1999 18:00:29 +0000 (18:00 +0000)]
Actually, nodeMergejoin shouldn't include psort.h at all...

24 years agonodeMergejoin was depending on an inclusion from psort.h...
Tom Lane [Sat, 16 Oct 1999 21:31:26 +0000 (21:31 +0000)]
nodeMergejoin was depending on an inclusion from psort.h...

24 years agoSecond phase of psort reconstruction project: add bookkeeping logic to
Tom Lane [Sat, 16 Oct 1999 19:49:28 +0000 (19:49 +0000)]
Second phase of psort reconstruction project: add bookkeeping logic to
recycle storage within sort temp file on a block-by-block basis.  This
reduces peak disk usage to essentially just the volume of data being
sorted, whereas it had been about 4x the data volume before.

24 years agoCheck RELSEG_SIZE when postmaster starting up.
Tatsuo Ishii [Sat, 16 Oct 1999 09:32:23 +0000 (09:32 +0000)]
Check RELSEG_SIZE when postmaster starting up.
this is neccesary to make sure that the backend and
the database uses same RELSEG_SIZE.

24 years ago*** empty log message ***
Michael Meskes [Fri, 15 Oct 1999 19:02:08 +0000 (19:02 +0000)]
*** empty log message ***

24 years agoFix typo in descriptions.
Bruce Momjian [Fri, 15 Oct 1999 16:19:40 +0000 (16:19 +0000)]
Fix typo in descriptions.

24 years agoClean up type descriptions.
Bruce Momjian [Fri, 15 Oct 1999 04:56:52 +0000 (04:56 +0000)]
Clean up type descriptions.

24 years agoThis patch implements ORACLE's COMMENT SQL command.
Bruce Momjian [Fri, 15 Oct 1999 01:49:49 +0000 (01:49 +0000)]
This patch implements ORACLE's COMMENT SQL command.
>From the ORACLE 7 SQL Language Reference Manual:
-----------------------------------------------------
COMMENT

Purpose:

To add a comment about a table, view, snapshot, or
column into the data dictionary.

Prerequisites:

The table, view, or snapshot must be in your own
schema
or you must have COMMENT ANY TABLE system privilege.

Syntax:

COMMENT ON [ TABLE table ] |
           [ COLUMN table.column] IS 'text'

You can effectively drop a comment from the database
by setting it to the empty string ''.
-----------------------------------------------------

Example:

COMMENT ON TABLE workorders IS
   'Maintains base records for workorder information';

COMMENT ON COLUMN workorders.hours IS
   'Number of hours the engineer worked on the task';

to drop a comment:

COMMENT ON COLUMN workorders.hours IS '';

The current patch will simply perform the insert into
pg_description, as per the TODO. And, of course, when
the table is dropped, any comments relating to it
or any of its attributes are also dropped. I haven't
looked at the ODBC source yet, but I do know from
an ODBC client standpoint that the standard does
support the notion of table and column comments.
Hopefully the ODBC driver is already fetching these
values from pg_description, but if not, it should be
trivial.

Hope this makes the grade,

Mike Mascari
(mascarim@yahoo.com)

24 years agoAdd S-tree doc for possible future use.
Bruce Momjian [Fri, 15 Oct 1999 01:47:55 +0000 (01:47 +0000)]
Add S-tree doc for possible future use.

24 years agoUpdate psql \? for \w.
Bruce Momjian [Thu, 14 Oct 1999 01:28:42 +0000 (01:28 +0000)]
Update psql \? for \w.

24 years agoCorrectly return -1 on error to CmdTuples()
Bruce Momjian [Wed, 13 Oct 1999 16:46:28 +0000 (16:46 +0000)]
Correctly return -1 on error to CmdTuples()

Vince.

24 years agoSplit 'BufFile' routines out of fd.c into a new module, buffile.c. Extend
Tom Lane [Wed, 13 Oct 1999 15:02:32 +0000 (15:02 +0000)]
Split 'BufFile' routines out of fd.c into a new module, buffile.c.  Extend
BufFile so that it handles multi-segment temporary files transparently.
This allows sorts and hashes to work with data exceeding 2Gig (or whatever
the local limit on file size is).  Change psort.c to use relative seeks
instead of absolute seeks for backwards scanning, so that it won't fail
when the data volume exceeds 2Gig.

24 years agoHi,
Bruce Momjian [Wed, 13 Oct 1999 11:38:42 +0000 (11:38 +0000)]
Hi,

I have changed a bit the makefiles for the win32 port - the *.def files
(created when building shared libraries) are now clean from
Makefile.shlib.

I have also removed "-g" from CFLAGS in the "cygwin32" template - it can
be
enabled when running configure.

                        Dan

24 years agoUpdate jdbc for release version #>
Bruce Momjian [Wed, 13 Oct 1999 11:08:57 +0000 (11:08 +0000)]
Update jdbc for release version #>

24 years agoUpdate for NUMERIC/DECIMAL data type.
Bruce Momjian [Wed, 13 Oct 1999 02:44:23 +0000 (02:44 +0000)]
Update for NUMERIC/DECIMAL data type.

24 years agoBLOBs containing NUL characters (ASCII 0) can be written to the
Bruce Momjian [Wed, 13 Oct 1999 02:26:37 +0000 (02:26 +0000)]
BLOBs containing NUL characters (ASCII 0) can be written to the
database, but they get truncated at the first NUL by lo_read
when they are read back. The reason for this is that lo_read in
Pg.xs is using the default:
    OUTPUT:
        RETVAL
        buf
which uses C's strlen() to work out the length of the scalar.

The code ought to read something more like:
    OUTPUT:
        RETVAL
        buf sv_setpvn((SV*)ST(2), buf, RETVAL);

I am not sure if this needs to be done on both lo_read methods
in this file, but I changed both and have not since had any
problems with truncated BLOBs.

Douglas Thomson <dougt@mugc.cc.monash.edu.au>

24 years agoUpdate new HISTORY file.
Bruce Momjian [Tue, 12 Oct 1999 16:04:20 +0000 (16:04 +0000)]
Update new HISTORY file.

24 years agoUpdate sgml.
Bruce Momjian [Tue, 12 Oct 1999 15:48:47 +0000 (15:48 +0000)]
Update sgml.

24 years agoUpdate for 6.5.3, including new INSTALL file and updated HISTORY.
Bruce Momjian [Tue, 12 Oct 1999 15:34:19 +0000 (15:34 +0000)]
Update for 6.5.3, including new INSTALL file and updated HISTORY.

24 years agoI have created a small patch that makes possible to compile pgsql on newer
Bruce Momjian [Tue, 12 Oct 1999 14:54:28 +0000 (14:54 +0000)]
I have created a small patch that makes possible to compile pgsql on newer
Cygwin snapshots (tested on 990115 which is recommended to use - it fixes
some errors in B20.1)

And I have another patch for including <sys/ipc.h> before <sys/sem.h> in
backend/storage/lmgr/proc.c - it is required due the design of cygipc
headers

                        Dan

24 years agoRemove pgeasy Makefile on distclean.
Bruce Momjian [Tue, 12 Oct 1999 14:46:26 +0000 (14:46 +0000)]
Remove pgeasy Makefile on distclean.

24 years agoautoconf
Bruce Momjian [Tue, 12 Oct 1999 14:42:04 +0000 (14:42 +0000)]
autoconf

24 years agoautoconf
Bruce Momjian [Tue, 12 Oct 1999 14:31:22 +0000 (14:31 +0000)]
autoconf

24 years agoUpdate pgeasy for missing files.
Bruce Momjian [Tue, 12 Oct 1999 14:06:49 +0000 (14:06 +0000)]
Update pgeasy for missing files.

24 years agoFix bad markup.
Thomas G. Lockhart [Tue, 12 Oct 1999 13:59:45 +0000 (13:59 +0000)]
Fix bad markup.
 <term> not allowed in paragraphs; <option> is a better choice.

24 years agoAdd DEC and SESSION_USER as reserved words.
Thomas G. Lockhart [Tue, 12 Oct 1999 13:58:53 +0000 (13:58 +0000)]
Add DEC and SESSION_USER as reserved words.
Move around a few other keywords which were not in the right category.
DEC and SESSION_USER are not yet committed to gram.y,
 since I'm in the middle of working on JOIN syntax too.

24 years agoSequence of date interpretation not quite right.
Thomas G. Lockhart [Tue, 12 Oct 1999 13:57:04 +0000 (13:57 +0000)]
Sequence of date interpretation not quite right.

24 years agoAdd blcksz to struct ControlFileData to check BLCKSZ is same
Tatsuo Ishii [Tue, 12 Oct 1999 10:21:56 +0000 (10:21 +0000)]
Add blcksz to struct ControlFileData to check BLCKSZ is same
as BLCKSZ which the backend was compiled in.

24 years agoUpdate pgeasy.
Bruce Momjian [Mon, 11 Oct 1999 18:51:10 +0000 (18:51 +0000)]
Update pgeasy.

24 years agocleanup of pgeasy.
Bruce Momjian [Mon, 11 Oct 1999 18:16:06 +0000 (18:16 +0000)]
cleanup of pgeasy.

24 years agoUpdate again.
Bruce Momjian [Mon, 11 Oct 1999 18:05:39 +0000 (18:05 +0000)]
Update again.

24 years agopgeasy update.
Bruce Momjian [Mon, 11 Oct 1999 18:03:04 +0000 (18:03 +0000)]
pgeasy update.

24 years agoUpdate pgeasy.
Bruce Momjian [Mon, 11 Oct 1999 17:51:27 +0000 (17:51 +0000)]
Update pgeasy.

24 years agoautoconf
Bruce Momjian [Mon, 11 Oct 1999 17:48:23 +0000 (17:48 +0000)]
autoconf

24 years agoAdd pginterface into main tree, called pgeasy.
Bruce Momjian [Mon, 11 Oct 1999 17:47:02 +0000 (17:47 +0000)]
Add pginterface into main tree, called pgeasy.

24 years agoUpdate TODO list.
Bruce Momjian [Mon, 11 Oct 1999 13:42:25 +0000 (13:42 +0000)]
Update TODO list.

24 years agoThe 1st step to implement new type of scan,TidScan.
Hiroshi Inoue [Mon, 11 Oct 1999 06:28:29 +0000 (06:28 +0000)]
The 1st step to implement new type of scan,TidScan.
Now WHERE restriction on ctid is allowed though it is
sequentially scanned.

24 years agoImprove pg_dump template1 error reports.
Bruce Momjian [Sun, 10 Oct 1999 17:00:26 +0000 (17:00 +0000)]
Improve pg_dump template1 error reports.

24 years agoRe-add mention of FAQ's for shared memory/ipc errors.
Bruce Momjian [Sun, 10 Oct 1999 16:53:51 +0000 (16:53 +0000)]
Re-add mention of FAQ's for shared memory/ipc errors.

24 years agoImprove pg_dump template1 error message.
Bruce Momjian [Sun, 10 Oct 1999 14:42:44 +0000 (14:42 +0000)]
Improve pg_dump template1 error message.

24 years agoRemove rogue </book> tag left in from normalizing this chapter in emacs.
Thomas G. Lockhart [Sat, 9 Oct 1999 02:30:02 +0000 (02:30 +0000)]
Remove rogue </book> tag left in from normalizing this chapter in emacs.

24 years agoRepair markup for sgmltools writeup.
Thomas G. Lockhart [Sat, 9 Oct 1999 02:29:15 +0000 (02:29 +0000)]
Repair markup for sgmltools writeup.
Fix indenting and make other minor markup improvements.

24 years agoMinor repairs of markup.
Thomas G. Lockhart [Sat, 9 Oct 1999 02:26:52 +0000 (02:26 +0000)]
Minor repairs of markup.

24 years agoAllow \r as whitespace.
Bruce Momjian [Sat, 9 Oct 1999 01:32:38 +0000 (01:32 +0000)]
Allow \r as whitespace.

24 years agoUpdate contrib/README.
Bruce Momjian [Sat, 9 Oct 1999 01:31:36 +0000 (01:31 +0000)]
Update contrib/README.

24 years agoMove __alpha to port/alpha.h.
Bruce Momjian [Sat, 9 Oct 1999 01:30:23 +0000 (01:30 +0000)]
Move __alpha to port/alpha.h.

24 years agoRemove contrib/int8.
Bruce Momjian [Sat, 9 Oct 1999 01:08:51 +0000 (01:08 +0000)]
Remove contrib/int8.

24 years agoDefine __alpha__ for __alpha.
Bruce Momjian [Fri, 8 Oct 1999 17:14:46 +0000 (17:14 +0000)]
Define __alpha__ for __alpha.

24 years agoFirst real FOREIGN KEY constraint trigger functionality.
Jan Wieck [Fri, 8 Oct 1999 12:00:08 +0000 (12:00 +0000)]
First real FOREIGN KEY constraint trigger functionality.
Implemented now:

    FOREIGN KEY ... REFERENCES ... MATCH FULL
FOREIGN KEY ... MATCH FULL ... ON DELETE CASCADE

Jan

24 years ago*** empty log message ***
Michael Meskes [Fri, 8 Oct 1999 11:05:05 +0000 (11:05 +0000)]
*** empty log message ***

24 years agoUpdate display of debug levels.
Bruce Momjian [Fri, 8 Oct 1999 05:36:58 +0000 (05:36 +0000)]
Update display of debug levels.

24 years agoclean up debug flags.
Bruce Momjian [Fri, 8 Oct 1999 05:27:14 +0000 (05:27 +0000)]
clean up debug flags.

24 years agoComment cleanup.
Bruce Momjian [Fri, 8 Oct 1999 05:20:48 +0000 (05:20 +0000)]
Comment cleanup.

24 years agoFix for "--" comment and no trailing newline, as seen in Perl.
Bruce Momjian [Fri, 8 Oct 1999 05:03:14 +0000 (05:03 +0000)]
Fix for "--" comment and no trailing newline, as seen in Perl.

24 years agoCleanup -is flag to -l for SSL. Another PERL variable name fix. Clean
Bruce Momjian [Fri, 8 Oct 1999 04:28:57 +0000 (04:28 +0000)]
Cleanup -is flag to -l for SSL.  Another PERL variable name fix.  Clean
up debugging options for postmaster and postgres programs.  postmaster
-d is no longer optional.  Documentation updates.

24 years agoRemove a no-longer-needed kluge for degenerate aggregate cases,
Tom Lane [Fri, 8 Oct 1999 03:49:55 +0000 (03:49 +0000)]
Remove a no-longer-needed kluge for degenerate aggregate cases,
and update some comments.

24 years agoMore startup/shutdown log messages.
Vadim B. Mikheev [Fri, 8 Oct 1999 02:16:22 +0000 (02:16 +0000)]
More startup/shutdown log messages.

24 years agoUse $(PERL) variable for perl compile. Now in Makefile.global.
Bruce Momjian [Fri, 8 Oct 1999 00:15:49 +0000 (00:15 +0000)]
Use $(PERL) variable for perl compile.  Now in Makefile.global.

24 years agoAdd quotes to password example.
Bruce Momjian [Thu, 7 Oct 1999 16:40:36 +0000 (16:40 +0000)]
Add quotes to password example.

24 years agoSomehow missed this call to addRangeTableEntry() ...
Tom Lane [Thu, 7 Oct 1999 05:48:03 +0000 (05:48 +0000)]
Somehow missed this call to addRangeTableEntry() ...

24 years agoFix planner and rewriter to follow SQL semantics for tables that are
Tom Lane [Thu, 7 Oct 1999 04:23:24 +0000 (04:23 +0000)]
Fix planner and rewriter to follow SQL semantics for tables that are
mentioned in FROM but not elsewhere in the query: such tables should be
joined over anyway.  Aside from being more standards-compliant, this allows
removal of some very ugly hacks for COUNT(*) processing.  Also, allow
HAVING clause without aggregate functions, since SQL does.  Clean up
CREATE RULE statement-list syntax the same way Bruce just fixed the
main stmtmulti production.
CAUTION: addition of a field to RangeTblEntry nodes breaks stored rules;
you will have to initdb if you have any rules.

24 years agoSmall cleanup.
Vadim B. Mikheev [Wed, 6 Oct 1999 22:44:25 +0000 (22:44 +0000)]
Small cleanup.

24 years agoXLOG (also known as WAL -:)) Bootstrap/Startup/Shutdown.
Vadim B. Mikheev [Wed, 6 Oct 1999 21:58:18 +0000 (21:58 +0000)]
XLOG (also known as WAL -:)) Bootstrap/Startup/Shutdown.
First step in cleaning up backend initialization code.
Fix for FATAL: now FATAL is ERROR + exit.

24 years agoMore more liszt language code, so remove it from pg_language.
Bruce Momjian [Wed, 6 Oct 1999 18:20:31 +0000 (18:20 +0000)]
More more liszt language code, so remove it from pg_language.

24 years agoUpdate TODO list.
Bruce Momjian [Wed, 6 Oct 1999 13:46:54 +0000 (13:46 +0000)]
Update TODO list.

24 years agoUpdate TODO list.
Bruce Momjian [Wed, 6 Oct 1999 13:36:50 +0000 (13:36 +0000)]
Update TODO list.

24 years agoImprove the treatment of partial(incomplete) blocks of relation files.
Hiroshi Inoue [Wed, 6 Oct 1999 06:38:04 +0000 (06:38 +0000)]
Improve the treatment of partial(incomplete) blocks of relation files.
This may solve a TODO item
* Recover or force failure when disk space is exhausted

24 years agoDon't set BootstrapProcessingMode in AddNewRelationTuple() before
Vadim B. Mikheev [Wed, 6 Oct 1999 03:08:46 +0000 (03:08 +0000)]
Don't set BootstrapProcessingMode in AddNewRelationTuple() before
heap_insert() any more. No reasons to do it, and old comments
said about this.

24 years agoCmdTuples() returns an int showing the number of affected tuples after an
Bruce Momjian [Wed, 6 Oct 1999 03:00:16 +0000 (03:00 +0000)]
CmdTuples() returns an int showing the number of affected tuples after an
insert, update or delete.  It will return -1 on error, although I've yet
to an error situation to prove that out!

Vince

24 years agoUpdate TODO list.
Bruce Momjian [Tue, 5 Oct 1999 21:13:31 +0000 (21:13 +0000)]
Update TODO list.

24 years agoUpdate sgmltools install instructions.
Bruce Momjian [Tue, 5 Oct 1999 18:55:45 +0000 (18:55 +0000)]
Update sgmltools install instructions.

24 years agoAllow comment-only lines, and ;;; lines too.
Bruce Momjian [Tue, 5 Oct 1999 18:14:31 +0000 (18:14 +0000)]
Allow comment-only lines, and ;;; lines too.

24 years agoUpdate TODO list.
Bruce Momjian [Tue, 5 Oct 1999 15:51:53 +0000 (15:51 +0000)]
Update TODO list.

24 years agoUpdate sgmltools for docs.
Bruce Momjian [Mon, 4 Oct 1999 17:05:51 +0000 (17:05 +0000)]
Update sgmltools for docs.