OSDN Git Service

pg-rex/syncrep.git
23 years agoUpdate BSDI SGML.
Bruce Momjian [Fri, 16 Feb 2001 16:10:06 +0000 (16:10 +0000)]
Update BSDI SGML.

23 years agoichar() has been renamed to chr(), so fix translation table.
Tom Lane [Fri, 16 Feb 2001 03:49:40 +0000 (03:49 +0000)]
ichar() has been renamed to chr(), so fix translation table.

23 years agoFix bugs in pltcl's new return_null command: it was liable to go belly up
Tom Lane [Fri, 16 Feb 2001 03:26:40 +0000 (03:26 +0000)]
Fix bugs in pltcl's new return_null command: it was liable to go belly up
if the return datatype's input converter was at all strict, because the
converter would get called on junk data when returning NULL.  Also
ensure that it gives an error rather than coredumping if someone tries
to use it in a trigger function.

23 years agoFix erroneous sort request in pltcl selftest.
Tom Lane [Fri, 16 Feb 2001 03:22:41 +0000 (03:22 +0000)]
Fix erroneous sort request in pltcl selftest.

23 years agoClean up two rather nasty bugs in operator selection code.
Tom Lane [Fri, 16 Feb 2001 03:16:58 +0000 (03:16 +0000)]
Clean up two rather nasty bugs in operator selection code.

1. If there is exactly one pg_operator entry of the right name and oprkind,
oper() and related routines would return that entry whether its input type
had anything to do with the request or not.  This is just premature
optimization: we shouldn't return the single candidate until after we verify
that it really is a valid candidate, ie, is at least coercion-compatible
with the given types.

2. oper() and related routines only promise a coercion-compatible result.
Unfortunately, there were quite a few callers that assumed the returned
operator is binary-compatible with the given datatype; they would proceed
to call it without making any datatype coercions.  These callers include
sorting, grouping, aggregation, and VACUUM ANALYZE.  In general I think
it is appropriate for these callers to require an exact or binary-compatible
match, so I've added a new routine compatible_oper() that only succeeds if
it can find an operator that doesn't require any run-time conversions.
Callers now call oper() or compatible_oper() depending on whether they are
prepared to deal with type conversion or not.

The upshot of these bugs is revealed by the following silliness in PL/Tcl's
selftest: it creates an operator @< on int4, and then tries to use it to
sort a char(N) column.  The system would let it do that :-( (and evidently
has done so since 6.3 :-( :-().  The result in this case was just a silly
sort order, but the reverse combination would've provoked coredump from
trying to dereference integers.  With this fix you get more reasonable
behavior:
pltcl_test=# select * from T_pkey1 order by key1, key2 using @<;
ERROR:  Unable to identify an operator '@<' for types 'bpchar' and 'bpchar'
        You will have to retype this query using an explicit cast

23 years agoAdd casting for numeric/float4/float8 type value
Hiroshi Inoue [Fri, 16 Feb 2001 03:10:09 +0000 (03:10 +0000)]
Add casting for numeric/float4/float8 type value
automatically to compensate the lack of automatic
conversion functionality of PostgreSQL server.
For example if there's a numeric type binding
   1.2567 --> 1.2567::numeric.
I hope this change would enable the use of numeric
type in MS-Access etc.

Thanks Hiroki Kataoka for his checking my code.

23 years agoUpdate bsdi faq.
Bruce Momjian [Fri, 16 Feb 2001 00:46:21 +0000 (00:46 +0000)]
Update bsdi faq.

23 years agoUpdate bsdi faq.
Bruce Momjian [Fri, 16 Feb 2001 00:17:57 +0000 (00:17 +0000)]
Update bsdi faq.

23 years agoTake OUTER JOIN semantics into account when estimating the size of join
Tom Lane [Fri, 16 Feb 2001 00:03:08 +0000 (00:03 +0000)]
Take OUTER JOIN semantics into account when estimating the size of join
relations.  It's not very bright, but at least it now knows that
A LEFT JOIN B must produce at least as many rows as are in A ...

23 years agoUpdate FAQ.
Bruce Momjian [Thu, 15 Feb 2001 22:21:23 +0000 (22:21 +0000)]
Update FAQ.

23 years agoUpdate FAQ.
Bruce Momjian [Thu, 15 Feb 2001 22:15:10 +0000 (22:15 +0000)]
Update FAQ.

23 years agoAdd some notes about memory management of RI plans.
Tom Lane [Thu, 15 Feb 2001 21:57:43 +0000 (21:57 +0000)]
Add some notes about memory management of RI plans.

23 years agoUpdate comments about memory management.
Tom Lane [Thu, 15 Feb 2001 21:47:08 +0000 (21:47 +0000)]
Update comments about memory management.

23 years agoUpdate notes about memory context scheme.
Tom Lane [Thu, 15 Feb 2001 21:38:26 +0000 (21:38 +0000)]
Update notes about memory context scheme.

23 years agoUpdate obsolete wording of error message.
Tom Lane [Thu, 15 Feb 2001 21:11:17 +0000 (21:11 +0000)]
Update obsolete wording of error message.

23 years agoAlthough we can't support out-of-line TOAST storage in indexes (yet),
Tom Lane [Thu, 15 Feb 2001 20:57:01 +0000 (20:57 +0000)]
Although we can't support out-of-line TOAST storage in indexes (yet),
compressed storage works perfectly well.  Might as well have a coherent
strategy for applying it, rather than the haphazard store-what-you-get
approach that was in the code before.  The strategy I've set up here is
to attempt compression of any compressible index value exceeding
BLCKSZ/16, or about 500 bytes by default.

23 years agoFurther polishing of documentation about new fmgr call convention.
Tom Lane [Thu, 15 Feb 2001 19:03:35 +0000 (19:03 +0000)]
Further polishing of documentation about new fmgr call convention.

23 years agoReduce default selectivity estimates for geometric operators; it seems
Tom Lane [Thu, 15 Feb 2001 17:55:17 +0000 (17:55 +0000)]
Reduce default selectivity estimates for geometric operators; it seems
the old ones were not small enough to ensure r-tree and gist indexes would
get picked when available.  These numbers are totally bogus anyway, but
in the absence of any real estimation technique, we'd like to select
indexes when available ...

23 years agoUpdate a couple of obsolete comments.
Tom Lane [Thu, 15 Feb 2001 17:46:40 +0000 (17:46 +0000)]
Update a couple of obsolete comments.

23 years agoUpdate TODO list.
Bruce Momjian [Thu, 15 Feb 2001 16:21:38 +0000 (16:21 +0000)]
Update TODO list.

23 years agoUpdate TODO list.
Bruce Momjian [Thu, 15 Feb 2001 16:03:46 +0000 (16:03 +0000)]
Update TODO list.

23 years agoUpdate for Tatsuo.
Bruce Momjian [Thu, 15 Feb 2001 13:31:44 +0000 (13:31 +0000)]
Update for Tatsuo.

23 years ago1) Change transaction boundary in autocommit off mode
Hiroshi Inoue [Thu, 15 Feb 2001 05:32:00 +0000 (05:32 +0000)]
1) Change transaction boundary in autocommit off mode
   per recent discussion in pgsql-odbc. Now SELECT is
   a boundary but VACUUM isn't.
2) Put back the error handling behavior. When elog(ERROR)
   was detected the driver automatically issue "ABORT"
   if a transaction is in progress.
3) Driver version is 7.01.0003(Dave already set it but
   it was put back).

23 years agoClarify meaning of GEQO_THRESHOLD parameter.
Tom Lane [Thu, 15 Feb 2001 04:28:50 +0000 (04:28 +0000)]
Clarify meaning of GEQO_THRESHOLD parameter.

23 years agoImprove documentation of JOIN syntax. Explain NATURAL as an alternative
Tom Lane [Thu, 15 Feb 2001 04:10:54 +0000 (04:10 +0000)]
Improve documentation of JOIN syntax.  Explain NATURAL as an alternative
to ON and USING for specifying the join condition, not as an independent
kind of join semantics.

23 years agoUnicode <-> SJIS new mapping tables (based on CP932.TXT) contributed by
Tatsuo Ishii [Thu, 15 Feb 2001 01:56:29 +0000 (01:56 +0000)]
Unicode <-> SJIS new mapping tables (based on CP932.TXT) contributed by
Eiji Tokuya" <e-tokuya@Mail.Sankyo-Unyu.co.jp>

23 years agoArrange for ORDER BY an expression on a UNION/INTERSECT/EXCEPT result,
Tom Lane [Thu, 15 Feb 2001 01:10:28 +0000 (01:10 +0000)]
Arrange for ORDER BY an expression on a UNION/INTERSECT/EXCEPT result,
such as
    SELECT f1 FROM foo UNION SELECT ... ORDER BY upper(f1)
to draw
'ORDER BY on a UNION/INTERSECT/EXCEPT result must be on one of the result columns'
rather than the uninformative 'f1 not found' we were producing before.
Eventually this should actually work, but that looks much too hard to try
to implement in late beta...

23 years agoRepair problems with duplicate index names generated when CREATE TABLE
Tom Lane [Wed, 14 Feb 2001 23:32:38 +0000 (23:32 +0000)]
Repair problems with duplicate index names generated when CREATE TABLE
specifies redundant UNIQUE conditions.

23 years agoChange scoping of table and join refnames to conform to SQL92: a JOIN
Tom Lane [Wed, 14 Feb 2001 21:35:07 +0000 (21:35 +0000)]
Change scoping of table and join refnames to conform to SQL92: a JOIN
clause with an alias is a <subquery> and therefore hides table references
appearing within it, according to the spec.  This is the same as the
preliminary patch I posted to pgsql-patches yesterday, plus some really
grotty code in ruleutils.c to reverse-list a query tree with the correct
alias name depending on context.  I'd rather not have done that, but unless
we want to force another initdb for 7.1, there's no other way for now.

23 years agoAlter documentation of boolean type, add example. Someone figured that it
Peter Eisentraut [Wed, 14 Feb 2001 19:37:26 +0000 (19:37 +0000)]
Alter documentation of boolean type, add example.  Someone figured that it
wasn't clear that the "boolean type" was actually called "boolean".  Add
tip about "casting" booleans using CASE.

Spell check whole file.

23 years agoFormat <structname>, <structfield>, and <type> mono-spaced.
Peter Eisentraut [Wed, 14 Feb 2001 19:35:14 +0000 (19:35 +0000)]
Format <structname>, <structfield>, and <type> mono-spaced.

23 years agoWeb Feb 14 17:29:00 GMT 2001 peter@retep.org.uk
Peter Mount [Wed, 14 Feb 2001 17:45:17 +0000 (17:45 +0000)]
Web Feb 14 17:29:00 GMT 2001 peter@retep.org.uk
        - Fixed bug in LargeObject & BlobOutputStream where the stream's output
          was not flushed when either the stream or the blob were closed.
        - Fixed PreparedStatement.setBinaryStream() where it ignored the length

23 years agoUpdate TODO list.
Bruce Momjian [Wed, 14 Feb 2001 15:12:37 +0000 (15:12 +0000)]
Update TODO list.

23 years agoAdd 7.X to dialog box.
Bruce Momjian [Wed, 14 Feb 2001 06:10:31 +0000 (06:10 +0000)]
Add 7.X to dialog box.

23 years agoBack out all ODBC formatting changes, and back out removal of <6.4
Bruce Momjian [Wed, 14 Feb 2001 05:45:46 +0000 (05:45 +0000)]
Back out all ODBC formatting changes, and back out removal of <6.4
protocol. I have left in Tom's SOCK_get_next_byte() fix, and the new
win32.mak file addition.  I have also left in the 'X' connection close
fix.

23 years agoUpdate TODO list.
Bruce Momjian [Wed, 14 Feb 2001 02:42:32 +0000 (02:42 +0000)]
Update TODO list.

23 years agoHmm, so referencing a CSS stylesheet when there isn't one doesn't work
Peter Eisentraut [Tue, 13 Feb 2001 22:35:15 +0000 (22:35 +0000)]
Hmm, so referencing a CSS stylesheet when there isn't one doesn't work
everywhere.

23 years agoFix markup.
Peter Eisentraut [Tue, 13 Feb 2001 22:05:47 +0000 (22:05 +0000)]
Fix markup.

23 years agoDidn't work when Makefile.custom is missing.
Peter Eisentraut [Tue, 13 Feb 2001 21:51:17 +0000 (21:51 +0000)]
Didn't work when Makefile.custom is missing.

23 years agoCustom DSSSL stylesheet. Style changes included here:
Peter Eisentraut [Tue, 13 Feb 2001 21:27:05 +0000 (21:27 +0000)]
Custom DSSSL stylesheet.  Style changes included here:
HTML:
* make .html the default extension
* allow use of CSS stylesheet ("stylesheet.css", not included)
* make <set> TOC two levels deep
* put time of creation into meta header
Print:
* make print output justified by default
* footnotes at bottom of each page
* allow TeX to hyphenate

23 years agoFix tag.
Peter Eisentraut [Tue, 13 Feb 2001 21:13:11 +0000 (21:13 +0000)]
Fix tag.

23 years agoUpdate TODO list.
Bruce Momjian [Tue, 13 Feb 2001 20:54:51 +0000 (20:54 +0000)]
Update TODO list.

23 years agoUpdate TODO list.
Bruce Momjian [Tue, 13 Feb 2001 20:54:04 +0000 (20:54 +0000)]
Update TODO list.

23 years agoComments about GetFreeXLBuffer().
Vadim B. Mikheev [Tue, 13 Feb 2001 20:40:25 +0000 (20:40 +0000)]
Comments about GetFreeXLBuffer().
GetFreeXLBuffer(): use Insert->LgwrResult instead of private LgwrResult
copy if it's more fresh (attempt to avoid acquiring info_lck/lgwr_lck).

23 years agoSome more including the patch to DatabaseMetaData backed out by Bruce.
Peter Mount [Tue, 13 Feb 2001 16:39:06 +0000 (16:39 +0000)]
Some more including the patch to DatabaseMetaData backed out by Bruce.

Tue Feb 13 16:33:00 GMT 2001 peter@retep.org.uk
        - More TestCases implemented. Refined the test suite api's.
        - Removed need for SimpleDateFormat in ResultSet.getDate() improving
          performance.
        - Rewrote ResultSet.getTime() so that it uses JDK api's better.

Tue Feb 13 10:25:00 GMT 2001 peter@retep.org.uk
        - Added MiscTest to hold reported problems from users.
        - Fixed PGMoney.
        - JBuilder4/JDBCExplorer now works with Money fields. Patched Field &
          ResultSet (lots of methods) for this one. Also changed cash/money to
          return type DOUBLE not DECIMAL. This broke JBuilder as zero scale
          BigDecimal's can't have decimal places!
        - When a Statement is reused, the previous ResultSet is now closed.
        - Removed deprecated call in ResultSet.getTime()

Thu Feb 08 18:53:00 GMT 2001 peter@retep.org.uk
        - Changed a couple of settings in DatabaseMetaData where 7.1 now
          supports those features
        - Implemented the DatabaseMetaData TestCase.

Wed Feb 07 18:06:00 GMT 2001 peter@retep.org.uk
        - Added comment to Connection.isClosed() explaining why we deviate from
          the JDBC2 specification.
        - Fixed bug where the Isolation Level is lost while in autocommit mode.
        - Fixed bug where several calls to getTransactionIsolationLevel()
          returned the first call's result.

23 years agoRemove postgresql jdbc files, per Peter.
Bruce Momjian [Tue, 13 Feb 2001 16:18:15 +0000 (16:18 +0000)]
Remove postgresql jdbc files, per Peter.

23 years agoRemove postgresql jdbc files, per Peter Mount.
Bruce Momjian [Tue, 13 Feb 2001 16:14:40 +0000 (16:14 +0000)]
Remove postgresql jdbc files, per Peter Mount.

23 years agoUpdate TODO list.
Bruce Momjian [Tue, 13 Feb 2001 16:11:46 +0000 (16:11 +0000)]
Update TODO list.

23 years agoBack out *inv* changes for this file. Peter want to handle it.
Bruce Momjian [Tue, 13 Feb 2001 15:43:08 +0000 (15:43 +0000)]
Back out *inv* changes for this file.  Peter want to handle it.

23 years agoRemove unused files, per Andreas
Bruce Momjian [Tue, 13 Feb 2001 14:33:51 +0000 (14:33 +0000)]
Remove unused files, per Andreas

23 years agoPlease apply the following patch to fix AIX and IRIX timestamp behavior
Bruce Momjian [Tue, 13 Feb 2001 14:32:52 +0000 (14:32 +0000)]
Please apply the following patch to fix AIX and IRIX timestamp behavior
as previously discussed.

It makes AIX and IRIX not use DST for dates before 1970.

The following expected files need to be removed from the regression tests,
they contain wrong results and are not needed any more.

src/test/regress/expected/horology-1947-PDT.out
src/test/regress/expected/tinterval-1947-PDT.out
src/test/regress/expected/abstime-1947-PDT.out

Zeugswetter Andreas

23 years agoRemoved abort() in XLogFileOpen.
Vadim B. Mikheev [Tue, 13 Feb 2001 08:44:09 +0000 (08:44 +0000)]
Removed abort() in XLogFileOpen.

23 years agoAdded some comments to setval, setval_is_called and do_setval
Philip Warner [Tue, 13 Feb 2001 01:57:12 +0000 (01:57 +0000)]
Added some comments to setval, setval_is_called and do_setval

23 years ago- Fix help output: replace 'f' with 't' and change desc
Philip Warner [Tue, 13 Feb 2001 01:31:54 +0000 (01:31 +0000)]
- Fix help output: replace 'f' with 't' and change desc
- Add extra arg to formatStringLiteral to specify how to handle LF & TAB.
  I opted for encoding them except in procedure bodies & comments
- Fixed bug in tar file input when restoring blobs

23 years agoClean up portability problems in regexp package: change all routine
Tom Lane [Tue, 13 Feb 2001 00:02:36 +0000 (00:02 +0000)]
Clean up portability problems in regexp package: change all routine
definitions from K&R to ANSI C style, and fix broken assumption that
int and long are the same datatype.  This repairs problems observed
on Alpha with regexps having between 32 and 63 states.

23 years agoAttached is a makefile for the ODBC driver for use under win32. It has been
Bruce Momjian [Mon, 12 Feb 2001 22:50:06 +0000 (22:50 +0000)]
Attached is a makefile for the ODBC driver for use under win32. It has been
tested only with MS VC++ 6.0SP4 using nmake.

Dave Page

23 years agoHmm, this isn't used either.
Tom Lane [Mon, 12 Feb 2001 22:17:29 +0000 (22:17 +0000)]
Hmm, this isn't used either.

23 years agoRemove unused and largely-broken-anyway compatibility defs.
Tom Lane [Mon, 12 Feb 2001 22:13:06 +0000 (22:13 +0000)]
Remove unused and largely-broken-anyway compatibility defs.

23 years agoBruce Momjian <pgman@candle.pha.pa.us> writes:
Bruce Momjian [Mon, 12 Feb 2001 21:49:24 +0000 (21:49 +0000)]
Bruce Momjian <pgman@candle.pha.pa.us> writes:
> OK, add #include <stdio.h> to the file.  That should fix it.

Seems unlikely, since libpq-fe.h already includes <stdio.h>.

The real problem here is that the code is wrong: it's passing NULL
to an int parameter.

                        regards, tom lane

23 years agoNew MS resource file, pgindented.
Bruce Momjian [Mon, 12 Feb 2001 21:45:24 +0000 (21:45 +0000)]
New MS resource file, pgindented.

23 years agoSuppress compiler warning on Alpha.
Tom Lane [Mon, 12 Feb 2001 21:03:03 +0000 (21:03 +0000)]
Suppress compiler warning on Alpha.

23 years agoRearrange order of operations in heap_create_with_catalog so that if
Tom Lane [Mon, 12 Feb 2001 20:07:21 +0000 (20:07 +0000)]
Rearrange order of operations in heap_create_with_catalog so that if
two transactions create the same table name concurrently, the one that
fails will complain about unique index pg_class_relname_index, rather than
about pg_type_typname_index which'll confuse most people.  Free side
benefit: pg_class.reltype is correctly linked to the pg_type entry now.
It's been zero in all but the preloaded pg_class entries since who knows
when.

23 years agoCleanup
Bruce Momjian [Mon, 12 Feb 2001 18:46:40 +0000 (18:46 +0000)]
Cleanup

23 years agoAdd stdio to file.
Bruce Momjian [Mon, 12 Feb 2001 18:37:35 +0000 (18:37 +0000)]
Add stdio to file.

23 years agoAdd // -> /* */ mapping to pgindent.
Bruce Momjian [Mon, 12 Feb 2001 18:30:53 +0000 (18:30 +0000)]
Add // -> /* */ mapping to pgindent.

23 years agoUpdate ODBC resource MS-generated file.
Bruce Momjian [Mon, 12 Feb 2001 17:54:02 +0000 (17:54 +0000)]
Update ODBC resource MS-generated file.

23 years ago User Manual
Bruce Momjian [Mon, 12 Feb 2001 14:21:27 +0000 (14:21 +0000)]
 User Manual
  Chapter 4
   String Operators
    Table 4.7: Other String Functions
      strpos is missing the result in the result column, it should be 2
      Also to_ascii might need a result but maybe not.

Appendix A
In the Time Zone Table
 Greenwich is spelled Greenwish

David Aldrich

23 years agoChange more // comments.
Bruce Momjian [Mon, 12 Feb 2001 14:17:06 +0000 (14:17 +0000)]
Change more // comments.

23 years agoRemove // and make /* */
Bruce Momjian [Mon, 12 Feb 2001 13:56:37 +0000 (13:56 +0000)]
Remove // and make /* */

23 years agoAdd #include <unistd.h>
Bruce Momjian [Mon, 12 Feb 2001 13:55:36 +0000 (13:55 +0000)]
Add      #include <unistd.h>

23 years agoNew release format, Peter E style.
Bruce Momjian [Mon, 12 Feb 2001 13:09:33 +0000 (13:09 +0000)]
New release format, Peter E style.

23 years agoReplace // comments from file for MS products.
Bruce Momjian [Mon, 12 Feb 2001 12:59:22 +0000 (12:59 +0000)]
Replace // comments from file for MS products.

23 years agopoit -> point.
Bruce Momjian [Mon, 12 Feb 2001 12:52:02 +0000 (12:52 +0000)]
poit -> point.

23 years agoSOCK_get_next_byte should not return garbage after error/EOF. Return
Tom Lane [Sun, 11 Feb 2001 23:46:40 +0000 (23:46 +0000)]
SOCK_get_next_byte should not return garbage after error/EOF.  Return
zero bytes instead.

23 years agoRemove unneeded shutdown() call, per Tom Lane.
Bruce Momjian [Sun, 11 Feb 2001 23:34:08 +0000 (23:34 +0000)]
Remove unneeded shutdown() call, per Tom Lane.

23 years agoImprove error message when startup or shutdown proc fails.
Tom Lane [Sun, 11 Feb 2001 23:12:28 +0000 (23:12 +0000)]
Improve error message when startup or shutdown proc fails.

23 years agoMove release date into release heading.
Bruce Momjian [Sun, 11 Feb 2001 14:20:30 +0000 (14:20 +0000)]
Move release date into release heading.

23 years agoMore cleanups.
Bruce Momjian [Sun, 11 Feb 2001 13:58:12 +0000 (13:58 +0000)]
More cleanups.

23 years agoInclude file alignment fixes.
Bruce Momjian [Sun, 11 Feb 2001 13:53:42 +0000 (13:53 +0000)]
Include file alignment fixes.

23 years agoMove X packet before shutdown().
Bruce Momjian [Sun, 11 Feb 2001 13:15:28 +0000 (13:15 +0000)]
Move X packet before shutdown().

23 years agoSource alignment cleanups.
Bruce Momjian [Sun, 11 Feb 2001 05:58:41 +0000 (05:58 +0000)]
Source alignment cleanups.

23 years agoMore updates.
Bruce Momjian [Sun, 11 Feb 2001 05:15:25 +0000 (05:15 +0000)]
More updates.

23 years agoMore cleanup.
Bruce Momjian [Sun, 11 Feb 2001 05:13:52 +0000 (05:13 +0000)]
More cleanup.

23 years agoMore cleanup.
Bruce Momjian [Sun, 11 Feb 2001 05:04:47 +0000 (05:04 +0000)]
More cleanup.

23 years agoCleanup of source.
Bruce Momjian [Sun, 11 Feb 2001 04:56:58 +0000 (04:56 +0000)]
Cleanup of source.

23 years agoAdd to Makefile.
Bruce Momjian [Sun, 11 Feb 2001 02:18:48 +0000 (02:18 +0000)]
Add to Makefile.

23 years agoAdd pg_logger to /contrib.
Bruce Momjian [Sun, 11 Feb 2001 02:18:27 +0000 (02:18 +0000)]
Add pg_logger to /contrib.

23 years agoThe attached patch does the following:
Bruce Momjian [Sun, 11 Feb 2001 02:01:22 +0000 (02:01 +0000)]
The attached patch does the following:

1) Tidies up the Datasource Dialogue now the version options are gone.
2) Tidies a comment in info.c.
3) Increments all version numbers to 07.01.0003 to take account of recent
revisions.

Regards, Dave Page

23 years agoMove pg_encoding_mblen() from common.c to wchar.c.
Tatsuo Ishii [Sun, 11 Feb 2001 01:59:22 +0000 (01:59 +0000)]
Move pg_encoding_mblen() from common.c to wchar.c.

23 years agoconv.c did not compile anymore. Fix wrong header file inclusion.
Tatsuo Ishii [Sun, 11 Feb 2001 01:56:58 +0000 (01:56 +0000)]
conv.c did not compile anymore. Fix wrong header file inclusion.

23 years agoClean up mutibyte supoorting source files.
Tatsuo Ishii [Sun, 11 Feb 2001 01:52:11 +0000 (01:52 +0000)]
Clean up mutibyte supoorting source files.
Now only wchar.c is shared by fronetnd/backend.

23 years agoClean up HISTORY file, add dates to releases.
Bruce Momjian [Sun, 11 Feb 2001 01:48:51 +0000 (01:48 +0000)]
Clean up HISTORY file, add dates to releases.

23 years agoRepair markup.
Peter Eisentraut [Sun, 11 Feb 2001 01:41:00 +0000 (01:41 +0000)]
Repair markup.

23 years agoDisable X connection close in ODBC until solution is found.
Bruce Momjian [Sat, 10 Feb 2001 23:35:04 +0000 (23:35 +0000)]
Disable X connection close in ODBC until solution is found.

23 years agoFormat to match standard conventions
Bruce Momjian [Sat, 10 Feb 2001 22:53:40 +0000 (22:53 +0000)]
Format to match standard conventions

23 years agoConvert to standard 4-space tabs.
Bruce Momjian [Sat, 10 Feb 2001 22:42:01 +0000 (22:42 +0000)]
Convert to standard 4-space tabs.

23 years agoOnly look for bison as YACC; other yaccs need to be selected explicitly.
Peter Eisentraut [Sat, 10 Feb 2001 22:31:42 +0000 (22:31 +0000)]
Only look for bison as YACC; other yaccs need to be selected explicitly.
When no suitable YACC is configured, supply useful informational messages
to users.  (Same way flex has been handled for a while.)

23 years agomove comment
Bruce Momjian [Sat, 10 Feb 2001 18:46:34 +0000 (18:46 +0000)]
move comment

23 years agoDocument that NetBSD's libedit can be used instead of readline.
Peter Eisentraut [Sat, 10 Feb 2001 18:24:14 +0000 (18:24 +0000)]
Document that NetBSD's libedit can be used instead of readline.

23 years agoAdd note about the availability of contrib/mac for the macaddr data type.
Peter Eisentraut [Sat, 10 Feb 2001 18:02:35 +0000 (18:02 +0000)]
Add note about the availability of contrib/mac for the macaddr data type.