Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Update/correct inheritance examples. | Tom Lane | 2002-04-13 |
| | |||
* | This is a proposed patch to doc/src/sgml/libpgtcl.sgml which documents | Bruce Momjian | 2002-04-13 |
| | | | | | | | | | the libpgtcl "pg_execute" command. This was mentioned on pgsql-interfaces on Mar 3. I am posting it here in the hope that someone will check to see if it makes sense and is correct SGML-wise. I did run it through jade, but this is my first try at this sort of thing. ljb | ||
* | Add: | Bruce Momjian | 2002-04-13 |
| | | | | > * Change NUMERIC to enforce the maximum precision, and increase it | ||
* | Mention precision of NUMERIC in docs. | Bruce Momjian | 2002-04-13 |
| | |||
* | Add: | Bruce Momjian | 2002-04-13 |
| | | | | > * Change NUMERIC data type to use base 10,000 internally | ||
* | Checking to decide whether relations are system relations now depends | Tom Lane | 2002-04-12 |
| | | | | | on the namespace not the name; pg_ is not a reserved prefix for table names anymore. From Fernando Nasser. | ||
* | Tweak error message wording. | Tom Lane | 2002-04-12 |
| | |||
* | Allow prompting of create/drop user to handle spaces. | Bruce Momjian | 2002-04-12 |
| | |||
* | Allow dropdb and others to use identifiers with spaces; IFS cleanup for | Bruce Momjian | 2002-04-12 |
| | | | | pg_dumpall. | ||
* | Update new Russian FAQ. | Bruce Momjian | 2002-04-12 |
| | |||
* | 1) Fix a bug in declare/fetch mode. | Hiroshi Inoue | 2002-04-12 |
| | | | | 2) Suppress some error logs for the request to other drivers. | ||
* | Add mention of function CREATE INDEX usage. | Bruce Momjian | 2002-04-11 |
| | |||
* | Cleanup in use of IFS. | Bruce Momjian | 2002-04-11 |
| | |||
* | Update obsolete syntax in example of inheritance. | Tom Lane | 2002-04-11 |
| | |||
* | Make sure leading/trailing/multiple consecutive space/tab in db/user/group | Bruce Momjian | 2002-04-11 |
| | | | | names are handled OK. | ||
* | Restructure representation of aggregate functions so that they have pg_proc | Tom Lane | 2002-04-11 |
| | | | | | | | | | | entries, per pghackers discussion. This fixes aggregates to live in namespaces, and also simplifies/speeds up lookup in parse_func.c. Also, add a 'proimplicit' flag to pg_proc that controls whether a type coercion function may be invoked implicitly, or only explicitly. The current settings of these flags are more permissive than I would like, but we will need to debate and refine the behavior; for now, I avoided breaking regression tests as much as I could. | ||
* | Fix pg_upgrade to handle dbnames, user/group names with spaces. | Bruce Momjian | 2002-04-11 |
| | |||
* | Make sure that usesuper is always accessed through superuser(), so that the | Peter Eisentraut | 2002-04-11 |
| | | | | single-user escape path always works. | ||
* | Fix problem with invalid database name assignment in while loop. | Bruce Momjian | 2002-04-11 |
| | | | | Properly warn of invalid pg_dumpall options; minor quoting cleanups. | ||
* | Readline and Zlib now required by default. Add options --without-readline | Peter Eisentraut | 2002-04-10 |
| | | | | and --without-zlib to turn them off. | ||
* | Add make install-strip target. | Peter Eisentraut | 2002-04-10 |
| | |||
* | Prevent an infinite loop of error reporting. | Hiroshi Inoue | 2002-04-10 |
| | |||
* | Functions live in namespaces. Qualified function names work, eg | Tom Lane | 2002-04-09 |
| | | | | | SELECT schema1.func2(...). Aggregate names can be qualified at the syntactic level, but the qualification is ignored for the moment. | ||
* | Update pg_upgrade for 7.3. | Bruce Momjian | 2002-04-09 |
| | |||
* | Point to developers site, not my hostname. | Bruce Momjian | 2002-04-09 |
| | |||
* | Update FAQ. | Bruce Momjian | 2002-04-09 |
| | |||
* | Update: | Bruce Momjian | 2002-04-09 |
| | | | | > o Fix PL/pgSQL RENAME to work on variables other than OLD/NEW | ||
* | Remove TODO.detail domain file. | Bruce Momjian | 2002-04-09 |
| | |||
* | Remove TODO.detail domain file: | Bruce Momjian | 2002-04-09 |
| | | | | | < * -Add domain capability [domain] (Rod Taylor) > * -Add domain capability (Rod Taylor) | ||
* | Added: | Bruce Momjian | 2002-04-09 |
| | | | | | > * Add Intimate Shared Memory(ISM) for Solaris > * Add documentation to lock shared memory into RAM for each OS, if possible | ||
* | Let psqlodbc30 be compilable without /D DRIVER_CURSOR_IMPLEMENT. | Hiroshi Inoue | 2002-04-09 |
| | |||
* | Add: | Bruce Momjian | 2002-04-09 |
| | | | | > o Fix PL/pgSQL RENAME to work on on variable names | ||
* | Update FAQ. | Bruce Momjian | 2002-04-09 |
| | |||
* | More cleanups of cursor text. | Bruce Momjian | 2002-04-09 |
| | |||
* | Fix markup problem with recent change. | Bruce Momjian | 2002-04-09 |
| | |||
* | Update refcursor documentation with examples of how to return pl/pgsql | Bruce Momjian | 2002-04-09 |
| | | | | refcursors. | ||
* | Fix SGML markup problem. | Bruce Momjian | 2002-04-09 |
| | |||
* | Update comment to clarify fetch limit and LIMIT. | Bruce Momjian | 2002-04-08 |
| | |||
* | Document genbki.sh's ability to auto-assign OIDs for DESCR macros. | Tom Lane | 2002-04-08 |
| | | | | Some other minor wording improvements. | ||
* | DST-transition-sensitive tests seem to be in horology now, not | Tom Lane | 2002-04-08 |
| | | | | timestamp. | ||
* | Fix PQescapeBytea/PQunescapeBytea so that they handle bytes > 0x7f. | Tatsuo Ishii | 2002-04-08 |
| | | | | | | This is necessary for mulibyte character sequences. See "[HACKERS] PQescapeBytea is not multibyte aware" thread posted around 2002/04/05 for more details. | ||
* | Add: | Bruce Momjian | 2002-04-07 |
| | | | | > * Abort SET changes made in aborted transactions | ||
* | Implement partial-key searching of syscaches, per recent suggestion | Tom Lane | 2002-04-06 |
| | | | | | to pghackers. Use this to do searching for ambiguous functions --- it will get more uses soon. | ||
* | Update Japanese FAQ. | Bruce Momjian | 2002-04-06 |
| | | | | Jun Kuwamura | ||
* | > > This patch corrects the use of rpath and export options when compiling | Bruce Momjian | 2002-04-05 |
| | | | | | | | | > > on postgres on Unixware with GCC built with gnu-as and gnu-ld. Remove leading spaces in conditional tests in patch and Makefile.aix. Nicolas Bazin | ||
* | This patch adds a missing heap_freetuple() to renamerel(), documents | Bruce Momjian | 2002-04-05 |
| | | | | | | | | | the decision not to make renamerel() update the sequence name that is stored within sequences themselves (thanks to Tom Lane), and adds some rudimentary regression tests for ALTER TABLE ... RENAME on non-table relations. Neil Conway | ||
* | Mark as done: | Bruce Momjian | 2002-04-05 |
| | | | | > o -Allow INSERT INTO my_table VALUES (a, b, c, DEFAULT, x, y, z, ...) | ||
* | Add INSERT(..., DEFAULT, ). | Bruce Momjian | 2002-04-05 |
| | | | | Rod Taylor | ||
* | I was tinkering with creating rules on views (so, for instance, one could | Bruce Momjian | 2002-04-05 |
| | | | | | | | | | | | insert on a view), and noticed that psql wouldn't show the list of rules set up on a view, like it does for tables. The fix was extremely simple, so I figured I'd share it. Not sure what the standard is for communicating these things, so I've attached the diff file for /src/bin/psql/describe.c. Paul (?) | ||
* | Adds domain dumping support to pg_dump. | Bruce Momjian | 2002-04-05 |
| | | | | Rod Taylor |