1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-10 09:21:54 +03:00
Commit Graph

15220 Commits

Author SHA1 Message Date
a895cb7837 Change v6.5.2 to 6.5.2. 1999-11-23 18:08:07 +00:00
fc955b14ea Add system indexes to match all caches.
Make all system indexes unique.
Make all cache loads use system indexes.
Rename *rel to *relid in inheritance tables.
Rename cache names to be clearer.
1999-11-22 17:56:41 +00:00
6b99fcf3e2 Update for documentation in libpq changes. 1999-11-11 21:52:28 +00:00
5e3189eaff Update psql banner 1999-11-05 18:21:09 +00:00
f793ac0a16 Update psql display. 1999-11-05 15:44:57 +00:00
5e956342de Update man pages for new banner. 1999-11-05 00:57:39 +00:00
2323b63631 Update psql with man pages and new version of help. 1999-11-04 22:07:57 +00:00
33a5c0ead1 Update for 6.5.3. 1999-11-01 16:20:46 +00:00
60f3e6b3a5 Make USING in COPY optional. 1999-10-29 23:52:22 +00:00
aeef71718a Add mention of NULL for COMMENT. 1999-10-26 16:36:28 +00:00
9e44249b6e update 1999-10-26 05:16:00 +00:00
021146f375 improve manual page 1999-10-26 04:40:58 +00:00
912b3a6fe9 More comments. 1999-10-26 03:53:35 +00:00
b6d6cffa99 Add documentation for comment. 1999-10-26 03:48:58 +00:00
55fa71a9e9 Add S-tree doc for possible future use. 1999-10-15 01:47:55 +00:00
2d12ee3f71 Update psql \? for \w. 1999-10-14 01:28:42 +00:00
e3dd4942c7 Update for NUMERIC/DECIMAL data type. 1999-10-13 02:44:23 +00:00
4fa0fd22a3 Update sgml. 1999-10-12 15:48:47 +00:00
867d047372 Update for 6.5.3, including new INSTALL file and updated HISTORY. 1999-10-12 15:34:19 +00:00
5a2085392c Fix bad markup.
<term> not allowed in paragraphs; <option> is a better choice.
1999-10-12 13:59:45 +00:00
fac9e11878 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.
1999-10-12 13:58:53 +00:00
757f832d18 Sequence of date interpretation not quite right. 1999-10-12 13:57:04 +00:00
0cfd97ecf2 Remove rogue </book> tag left in from normalizing this chapter in emacs. 1999-10-09 02:30:02 +00:00
70320b5bf7 Repair markup for sgmltools writeup.
Fix indenting and make other minor markup improvements.
1999-10-09 02:29:15 +00:00
fc32c709b4 Minor repairs of markup. 1999-10-09 02:26:52 +00:00
ae61ef34bd 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.
1999-10-08 04:28:57 +00:00
558833cadd Add quotes to password example. 1999-10-07 16:40:36 +00:00
86210e9d39 Update sgmltools install instructions. 1999-10-05 18:55:45 +00:00
dab3775329 Update sgmltools for docs. 1999-10-04 17:05:51 +00:00
ab35b0822b Expunge "UNIX" in favor of "Unix".
A few other changes, but I forget what :(
1999-10-04 15:18:54 +00:00
ee8d39a852 Add mention of transactions and large objects.
Still need the code updated for LO examples.
1999-10-04 15:16:35 +00:00
59844a65dd Fix typo in sgml source. 1999-10-04 04:37:46 +00:00
e23a2b1ea0 Document formerly-undocumented WITH clause of CREATE FUNCTION. 1999-10-02 21:27:49 +00:00
996c52beff Refer to "name", rather than "table" as the replaceable parameter.
Seems to read better this way...
1999-10-01 15:26:29 +00:00
f74179cd8e Make a mention of the new TRUNCATE command. 1999-10-01 15:24:46 +00:00
66d17c3e26 Make TABLE an optional keyword, a la LOCK TABLE (gram.y fixes not yet
committed, but will be within a week or two).
Actually include the reference page into the docs...
1999-10-01 15:24:09 +00:00
03e5edb7e4 Add keywords from Jan's recent RI features. 1999-10-01 15:21:08 +00:00
b14a465131 Remove xref's to reference pages since they are not available in
the Programmer's Guide.
1999-10-01 15:20:06 +00:00
d810338d29 Add a few items to the reserved keyword lists.
Clarify information on implicitly-typed constants.
1999-09-29 05:22:25 +00:00
be18913532 Remove remnant garbage from former man pages. 1999-09-29 05:21:11 +00:00
fe2f878173 Fix (mis)information about NULLIF() SQL function.
Thanks to Tom Lane for pointing it out.
1999-09-29 05:20:20 +00:00
f7e12db734 Strip out some cvs log info. 1999-09-29 05:18:14 +00:00
165e2b6fb3 Recommend postmaster stop/start for pg_upgrade. 1999-09-28 15:59:10 +00:00
9394d62c73 I have been working with user defined types and user defined c
functions.  One problem that I have encountered with the function
manager is that it does not allow the user to define type conversion
functions that convert between user types. For instance if mytype1,
mytype2, and mytype3 are three Postgresql user types, and if I wish to
define Postgresql conversion functions like

I run into problems, because the Postgresql dynamic loader would look
for a single link symbol, mytype3, for both pieces of object code.  If
I just change the name of one of the Postgresql functions (to make the
symbols distinct), the automatic type conversion that Postgresql uses,
for example, when matching operators to arguments no longer finds the
type conversion function.

The solution that I propose, and have implemented in the attatched
patch extends the CREATE FUNCTION syntax as follows. In the first case
above I use the link symbol mytype2_to_mytype3 for the link object
that implements the first conversion function, and define the
Postgresql operator with the following syntax

The patch includes changes to the parser to include the altered
syntax, changes to the ProcedureStmt node in nodes/parsenodes.h,
changes to commands/define.c to handle the extra information in the AS
clause, and changes to utils/fmgr/dfmgr.c that alter the way that the
dynamic loader figures out what link symbol to use.  I store the
string for the link symbol in the prosrc text attribute of the pg_proc
table which is currently unused in rows that reference dynamically
loaded
functions.


Bernie Frankpitt
1999-09-28 04:34:56 +00:00
63a85082e3 Reverse out last scan.l patch for minus handling.\ 1999-09-28 03:41:40 +00:00
e7cad7b0cb Add TRUNCATE command, with psql help and sgml additions. 1999-09-23 17:03:39 +00:00
4d4378b70f *** empty log message *** 1999-09-15 14:14:10 +00:00
a7fd74edb3 Update protocol doc to emphasize that backend can return
arbitrarily long strings, and frontends should cope gracefully.  Goes
along with long query and long error message changes...
1999-09-11 22:02:51 +00:00
1e4f0197bb Add information on ssh tunnelling from Gene Selkov. 1999-09-10 14:20:24 +00:00
db5d724986 Fix wording on allowed/forbidden keyword usage.
Thanks to Michael Deck <deckm@cleansoft.com> for the tipoff.
Add more examples for language components.
1999-09-01 02:37:40 +00:00