Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-05-09 | More single-quote fixes. | Bruce Momjian | |
2000-05-09 | Add single quote. | Bruce Momjian | |
2000-05-08 | Change HISTORY to show outer joins in 7.1 or 7.2.REL7_0 | Bruce Momjian | |
2000-05-08 | Minor fixups for markup and wording. | Thomas G. Lockhart | |
2000-05-06 | Update TODO list. | Bruce Momjian | |
2000-05-06 | Update TODO list. | Bruce Momjian | |
2000-05-06 | Update TODO list. | Bruce Momjian | |
2000-05-05 | Update TODO list. | Bruce Momjian | |
2000-05-05 | Forgot that dumpall's output script should 'delete from pg_group' before | Tom Lane | |
loading new data, for consistency with its handling of pg_shadow. | |||
2000-05-05 | psql: suppress warnings about too many arguments if the command is not valid ↵ | Peter Eisentraut | |
in the first place | |||
2000-05-05 | Spello SERIALIZED -> SERIALIZABLE in psql tab completion | Peter Eisentraut | |
2000-05-05 | ImageViewer transaction fixes | Peter Mount | |
2000-05-05 | Update TODO list. | Bruce Momjian | |
2000-05-05 | Please apply the following patch to the FAQ_AIX | Bruce Momjian | |
Thanks Andreas | |||
2000-05-05 | Because we ended up forcing an initdb for 7.0 final, we aren't going | Tom Lane | |
to need this updatepgproc.sql script after all... | |||
2000-05-05 | Force initdb because of pg_group index fix. | Tom Lane | |
2000-05-05 | Make the indexes on pg_group be shared system relations. | Tom Lane | |
2000-05-05 | Accept pg_group as well as pg_shadow data from dumpall script. | Tom Lane | |
Rearrange handling of VACUUMs so that they are certain to be executed as superuser not some random user; also, do not forget to vacuum template1 itself. | |||
2000-05-05 | Dump contents of pg_group along with pg_shadow. | Tom Lane | |
2000-05-04 | Don't leak a file descriptor when updating pg_pwd file. Also, check for | Tom Lane | |
failure of rename() call. | |||
2000-05-04 | Polishing for 7.0 release. Fix up inconsistant spacing in release notes. | Thomas G. Lockhart | |
2000-05-04 | Installation guide for 7.0 release. From SGML sources. | Thomas G. Lockhart | |
2000-05-03 | Do not try to build libpq++ if class 'string' is not defined in the | Tom Lane | |
available C++ header files. | |||
2000-05-03 | Minor fixes ready for 7.0 | Peter Mount | |
2000-05-03 | Oops,I've forgotten to add an documentation about -P option of | Hiroshi Inoue | |
postgres. | |||
2000-05-03 | Update sco faq. | Bruce Momjian | |
2000-05-02 | Update FAQ. | Bruce Momjian | |
2000-05-02 | Remove derived files from CVS. Now kept in | Thomas G. Lockhart | |
hub.org:/home/projects/pgsql/ftp/www/html/users-lounge/7.0/docs/ | |||
2000-05-02 | Improve section heading for date/time history. | Thomas G. Lockhart | |
2000-05-02 | Fixups in content and markup for 7.0 release. | Thomas G. Lockhart | |
2000-05-02 | Update HISTORY/sgml for new pgaccess version. | Bruce Momjian | |
2000-05-02 | Update SCO FAQ. Billy G. Allie | Bruce Momjian | |
2000-05-02 | Modify getdatabaseencoding(), pg_encoding_to_char() | Tatsuo Ishii | |
pg_char_to_encoding() in multibyte disbaled case so that it does not throw an error, rather return HARD CODED default value (currently SQL_ASCII). This would solve the "non-mb backend vs. mb-enabled frontend" problem. | |||
2000-04-30 | Reset CurrentMemoryContext to TopMemoryContext at the beginning of error | Tom Lane | |
cleanup, ie, as soon as we have caught the longjmp. This ensures that current context will be a valid context throughout error cleanup. Before it was possible that current context was pointing at a context that would get deleted during cleanup, leaving any subsequent pallocs in deep trouble. I was able to provoke an Assert failure when compiled with asserts + -DCLOBBER_FREED_MEMORY, if I did something that would cause an error to be reported by the backend large-object code, because indeed that code operates in a context that gets deleted partway through xact abort --- and CurrentMemoryContext was still pointing at it! Boo hiss. | |||
2000-04-30 | Remove bogus 'xid loop detected' check, which actually wasn't detecting | Tom Lane | |
loops, but just arbitrarily failing at 1000 locks. | |||
2000-04-29 | Clean up ecpg test files. | Bruce Momjian | |
2000-04-29 | Update TODO list. | Bruce Momjian | |
2000-04-28 | Update pgeasy examples | Bruce Momjian | |
2000-04-28 | Update TODO list. | Bruce Momjian | |
2000-04-28 | Update TODO list. | Bruce Momjian | |
2000-04-28 | Update libpgeasy define. | Bruce Momjian | |
2000-04-28 | More libpgeasy update of connectdb() parameter ordering | Bruce Momjian | |
2000-04-28 | Change libpgeasy to take dbname at end like all other interfaces. | Bruce Momjian | |
2000-04-28 | Update TODO list. | Bruce Momjian | |
2000-04-28 | Setting statistic options from SET PG_OPTIONS caused a backend crash | Tom Lane | |
because StatFp never got set in that case. Set it immediately before use to eliminate such problems. | |||
2000-04-28 | plpgsql RAISE statement was careless about the possibility of a NULL | Tom Lane | |
field value being displayed; produced coredump instead of the expected <NULL> display. | |||
2000-04-27 | Except_Intersect_Rewrite() failed to ignore resjunk targetlist entries, | Tom Lane | |
thus causing failure if one sub-select had resjunk entries that the other did not (cf. bug report from Espinosa 4/27/00). | |||
2000-04-27 | Update libpgeasy e-mail address | Bruce Momjian | |
2000-04-27 | Repair problem noted by Elphick: make_rels_by_joins failed to handle | Tom Lane | |
cases where joinclauses were present but some joins have to be made by cartesian-product join anyway. An example is SELECT * FROM a,b,c WHERE (a.f1 + b.f2 + c.f3) = 0; Even though all the rels have joinclauses, we must join two of them in cartesian style before we can use the join clause... | |||
2000-04-27 | -D switch to postmaster should override any PGDATA environment variable | Tom Lane | |
that might be hanging about. Now it does ... amazing nobody noticed this before ... |