1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-13 07:41:39 +03:00
Commit Graph

3272 Commits

Author SHA1 Message Date
77fcc1cbae Fix some misstatements in WAL parameter discussion. 2002-11-02 22:23:01 +00:00
5123139210 Remove encoding lookups from grammar stage, push them back to places
where it's safe to do database access.  Along the way, fix core dump
for 'DEFAULT' parameters to CREATE DATABASE.  initdb forced due to
change in pg_proc entry.
2002-11-02 18:41:22 +00:00
6a7273e14c Fix permissions-checking bugs and namespace-search-path bugs in
CONVERSION code.  Still need to figure out what to do about inappropriate
coding in parsing.
2002-11-02 02:33:03 +00:00
caed998b69 Update port list. 2002-11-02 01:29:37 +00:00
676a7c02d6 Update description of timestamp types for 7.3 implementation. 2002-10-31 22:18:42 +00:00
2c58fcc0aa Add mention of T on .pot files, from pkuczynski@hypode.pl 2002-10-30 05:14:32 +00:00
faf285362e Clean up Unixware entry for Larry Rosenman 2002-10-30 03:00:53 +00:00
5bd06b236f Update ports list. 2002-10-29 19:09:41 +00:00
db72810361 Update ports list. 2002-10-29 18:59:38 +00:00
ee244d6327 Update ports list. 2002-10-29 18:13:28 +00:00
9f8a1215a0 Clean up markup in ports list. 2002-10-29 03:56:51 +00:00
3f6d48a775 Update ports list. 2002-10-29 03:47:41 +00:00
ca3396802a Update Giles email address. 2002-10-29 03:29:42 +00:00
79ec810031 Update port list. 2002-10-29 03:07:11 +00:00
99a1b0d630 Update port list. 2002-10-29 02:57:28 +00:00
2e447d21b8 Update port list. 2002-10-29 02:38:37 +00:00
3b2796e6d2 Update port list. 2002-10-29 02:36:55 +00:00
bb5f8918c4 Update ports list. 2002-10-27 23:50:05 +00:00
f3f39d0b9c Update ports. 2002-10-26 20:45:40 +00:00
e3edb8c69b Update ports list. 2002-10-26 20:15:42 +00:00
458222e76f Update port list. 2002-10-26 20:12:25 +00:00
5d42962bd3 Update ports. 2002-10-26 20:04:55 +00:00
0ed0a9ddc0 Update BSD/OS as supported platform. 2002-10-26 02:17:05 +00:00
6b704bf501 Add note about sort order of character datatypes being locale-dependent,
per suggestion from Nicolaus Erichsen.
2002-10-24 21:19:15 +00:00
3a0fde3b51 Make link to schema inspection functions more clear. 2002-10-24 21:10:58 +00:00
266a280584 Add introductory sections explaining what each book is about. Remove Y2K
statement.
2002-10-24 17:48:54 +00:00
3675d064c9 Add mention of postgres signals to reference page
Joseph Shraibman
2002-10-23 23:33:08 +00:00
68c8bce69e Updated German FAQ, from Ian Barwick 2002-10-22 21:44:51 +00:00
19cc7bcbe5 Specify that we need bison >= 1.50. 2002-10-22 13:46:59 +00:00
f3e1937e5d Move libpgeasy.sgml to gborg. 2002-10-21 23:14:10 +00:00
9761f1a07e Move odbc.sgml to gborg ODBC project. 2002-10-21 23:10:09 +00:00
b6f0c50232 Small update for the removal of some memory leaks in plpython SGML example.
Nigel J. Andrews
2002-10-21 20:34:09 +00:00
cc4f576957 Improve ECPG documentation. 2002-10-21 18:04:05 +00:00
210a039d4f Since ANY is a reserved word, better suggest that ANY be quoted when
used for the input type of an aggregate.
2002-10-21 04:33:39 +00:00
156408e97b Fix documented sizes of geometric types. 2002-10-21 02:12:08 +00:00
a92df3a208 Fix example of doing a restore. 2002-10-21 02:11:37 +00:00
189c3481c4 Updates from Ian Barwick. 2002-10-21 00:47:44 +00:00
76cadb59fe Remove trailing blanks in cvs.sgml. 2002-10-20 20:58:02 +00:00
c918be6a17 Update description of numeric constants to match 7.3 reality.
Miscellaneous other copy-editing.
2002-10-20 05:05:46 +00:00
2b2cf392fe Update char/varchar()/text/bytea to mention they have similar performance
characteristics.
2002-10-20 02:58:56 +00:00
c650d52e14 Update Japanese FAQ, from Jun Kuwamura. 2002-10-20 02:37:49 +00:00
f1c0071d5a Add warning that autocommit=off is not well-supported yet. 2002-10-20 01:43:32 +00:00
ab901c60c8 Move BeOS and QNX4 to unsupported-platform list, until someone cares
to expend the effort to update them for new semaphore code.
2002-10-20 01:38:18 +00:00
272bf59d29 Fix inconsistent formatting. 2002-10-19 23:09:20 +00:00
93dca0d224 Fix incomplete definition of ALTER TABLE ADD/DROP CONSTRAINT syntax.
Add some verbiage about recent tweaks to behavior of ADD and DROP
COLUMN when there are descendant tables.
2002-10-19 22:51:45 +00:00
c1f91a38e2 Fix rewrite code so that rules are in fact executed in order by name,
rather than being reordered according to INSTEAD attribute for
implementation convenience.
Also, increase compiled-in recursion depth limit from 10 to 100 rewrite
cycles.  10 seems pretty marginal for situations where multiple rules
exist for the same query.  There was a complaint about this recently,
so I'm going to bump it up.  (Perhaps we should make the limit a GUC
parameter, but that's too close to being a new feature to do in beta.)
2002-10-19 19:00:47 +00:00
44dc9c1faa Fix psql's \copy to accept table names containing schemas, as well as
a column list.  Bring its parsing of quoted names and quoted strings
somewhat up to speed --- I believe it now handles all non-error cases
the same way the backend would, but weird boundary conditions are not
necessarily done the same way.
2002-10-19 00:22:14 +00:00
fb9bc342ff Improve discussion of FOR UPDATE. 2002-10-18 18:26:22 +00:00
f99e525f0f Update for tables returning function, item 5.3, from Joe Conway. 2002-10-17 23:34:10 +00:00
841e4b2089 Put the disk information all in one chapter. 2002-10-16 22:06:33 +00:00