Thomas G. Lockhart
362575b782
Enable more flexible syntax for the SET command. Now allows single floats,
...
single integers, and lists of names, without surrounding them with quotes.
Remove all tokens which are defined as operators from ColID and ColLabel
to avoid precedence confusion. Thanks to Tom Lane for catching this.
26 years ago
Tom Lane
b68d9c4c41
Makefile should not pre-empt user's decision about whether
...
to use -g ... especially not when this can cause real problems on some
platforms ...
26 years ago
Tom Lane
0517c3204e
Unixware fix for new config.guess output,
...
from Bill.Allie@mug.org .
26 years ago
Tom Lane
0a5a0b8dfd
Make use of configure symbols for unportable constructs. Make
...
inclusions of system headers more consistent.
26 years ago
Tom Lane
67cee15367
Autoconf.
26 years ago
Tom Lane
0a1ed443f8
Add configure checks to see if 'using namespace std' and
...
'#include <string>' work in the local C++ compiler.
26 years ago
Thomas G. Lockhart
a1916dafe0
Change cross reference to CREATE AGGREGATE to a citation, since the
...
Programmer's Guide does not have access to the reference page.
Normalize markup.
26 years ago
Tom Lane
835d78d589
Remove extraneous semicolon.
26 years ago
Tom Lane
21bde57f66
Replace refs to v6.6 with v7.0.
26 years ago
Tom Lane
e55985d3be
Tweak indexscan cost estimation: round estimated # of tuples visited up
...
to next integer. Previously, if selectivity was small, we could compute
very tiny scan cost on the basis of estimating that only 0.001 tuple
would be fetched, which is silly. This naturally led to some rather
silly plans...
26 years ago
Peter Eisentraut
341dc91820
Added latest config.guess and config.sub
26 years ago
Thomas G. Lockhart
1b113a23e5
Change rules for interpreting date/time input to disallow 1 and 3 character
...
years. Rejects dates like '0.085', which were accepted previously.
26 years ago
Thomas G. Lockhart
bcd488d0ce
Change rules for interpreting date/time input to disallow 1 and 3 character
...
years. Rejects dates like '0.085', which were accepted previously.
Minor mods of ODBC markup.
26 years ago
Thomas G. Lockhart
f05ac972c6
Fix markup for terminology.
26 years ago
Thomas G. Lockhart
0b3214aca0
Add mention of join syntax to release notes, and reformat a few lines.
...
Update porting info. Still need a lot of platforms tested.
Fix small errors in markup.
26 years ago
Thomas G. Lockhart
98069f2a42
Update SGML catalog references to DocBook 3.1 on FreeBSD.
...
Matches postgresql.org/hub.org environment.
26 years ago
Tom Lane
68c1801b1d
Small improvements to user's guide description of arrays.
26 years ago
Tom Lane
9dc12ef54f
Oops, missed some < and > that need to be < and > ...
26 years ago
Tom Lane
0fb864f166
Clean up major bogosity in description of creating a new index operator
...
class. This chapter was apparently sewed together from several
inconsistent examples... and perhaps from old docs that no longer
apply at all.
26 years ago
Tom Lane
f71fb9e0b8
Add a little to index operator class discussion.
26 years ago
Tom Lane
1f7ba1ebaf
Fix some bogosity in the tutorial examples.
26 years ago
Bruce Momjian
081cba45e6
Allow compile to finish even if plperl fails, which it does now.
26 years ago
Peter Eisentraut
a9f37f16d2
Fixed bug with repeated \e in psql (failed to clear buffers correctly)
26 years ago
Thomas G. Lockhart
39f69bc38f
Start updating for the v7.0 release.
...
Use "generic functions" for math and other routines.
Use SQL92 "type 'literal'" syntax rather than Postgres "'literal'::type".
26 years ago
Thomas G. Lockhart
2dabd2cd1f
Allow full type names in CREATE FUNCTION arguments and return type.
...
Move CREATE FUNCTION/WITH clause to end of statement to get around
shift/reduce conflicts with type names containing "WITH".
Add lots of tokens as allowed ColId's and/or ColLabel's,
so this should be a complete set for the v7.0 release.
26 years ago
Thomas G. Lockhart
2c8223f14b
Fix up comments where had been uglified by the automated reformatter.
26 years ago
Thomas G. Lockhart
0b96c6f4ae
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.
26 years ago
Bruce Momjian
8d7dc6fffe
Add html FAQ and FAQ_DEV sources
26 years ago
Tatsuo Ishii
a92ab528ef
Enhance pg_ctl so that it prints error messages from postmaster
...
if it fails to start up it (this is only vaild if -w is given).
26 years ago
Tom Lane
2ce4b4cda1
Update obsolete statement that indexes can have only 7 columns.
...
Reorganize description of index features for more clarity.
26 years ago
Tom Lane
ee4dcf1478
Update/improve documentation about creating aggregate functions.
26 years ago
Tom Lane
0a27641c1a
nodeAgg has always been willing to accept an aggregate with a finalFunc
...
and only one transition state, but the CREATE AGGREGATE code rejected
this combination.
26 years ago
Peter Eisentraut
4579e68db2
Updated user's guide to match new psql's output format
...
Fixed bug in createdb/alternative location
26 years ago
Tom Lane
3871b69ba1
Improve descriptions of postmaster switches.
26 years ago
Tom Lane
a7b8de40db
Rearrange steps in recommended install procedure to something more
...
reasonable, ie configure and build first, then optionally run regress
tests using new parallel (non-installed) test method, and only then
backup and kill old installation.
26 years ago
Tom Lane
5521658e30
Add description of new parallel regression testing method; update
...
procedure to cover running either test script; other minor improvements.
26 years ago
Tom Lane
4e9c534766
Update descriptions of configure's options, and document how to specify
...
multiple directories for --with-includes or --with-libraries.
26 years ago
Tom Lane
7c81a130a4
Fix erroneous claim that 'postmaster -S' leaves the postmaster running
...
in the foreground --- in fact, it auto-detaches.
26 years ago
Bruce Momjian
ba834d6425
Update initdb flags.
26 years ago
Tatsuo Ishii
d7959b5c71
Change resultmap:
...
powerpc-unknown-linux-gnu --> powerpc-unknown-linux-gnulibc1
this is because for new config.guess.
26 years ago
Tatsuo Ishii
f3160a6530
New platform specific geometry regression expected file for
...
powerpc-linux-gnulibc1.
26 years ago
Tatsuo Ishii
5363144d37
Remove some results from int4-not-representable.out
...
This is due to the changes made to int4.sql.
< SELECT dsqrt(float8 '64') AS eight;
< eight
< -------
< 8
< (1 row)
<
< SELECT |/float8 '64' AS eight;
< eight
< -------
< 8
< (1 row)
<
< SELECT ||/float8 '27' AS three;
< three
< -------
< 3
< (1 row)
<
26 years ago
Tom Lane
bccac99e97
Make configure --help produce slightly more useful and consistently-
...
formatted descriptions of --with options.
26 years ago
Tom Lane
cb3b3eda9a
In PQnotifies discussion, reference PQsocket as function needed to get
...
file descriptor number for select(). (Suggestion from Ken Wright.)
26 years ago
Bruce Momjian
d2684ea712
Attached is the regression diff for geometry, RedHat 6.1 on a Pentium
...
200 MMX. I was going through my e-mail, cleaning out my 1000+ message
inbox, and found this one. Sorry.
--
Lamar Owen
26 years ago
Tom Lane
0abebf0e7b
Remove bogus complexity from build/install of plperl. This stuff was
...
apparently copied from the makefile for the perl5 interface module,
which needs it for reasons explained in src/interfaces/Makefile.
But none of those reasons apply to plperl.
26 years ago
Tom Lane
e4739e7029
Old patch from Mark Hollomon to add plperl to createlang's repertoire.
...
Seems to have slipped through the cracks.
26 years ago
Tom Lane
cfc0ba8c04
Another fix for old shells.
26 years ago
Tom Lane
c446802b22
Fix syntax error reported by old shells ("if ! command..." is a
...
neologism, apparently).
26 years ago
Bruce Momjian
1aecb8d2ff
More >&1 cleanups
26 years ago