Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | this fixes the bug where setting the entry in he process table no longer works | Marc G. Fournier | 2000-05-12 | |
| | | | | | | | | under FreeBSD ... basically, if setproctitle() exists, use it ... the draw back right now is the PS_SET_STATUS stuff doesn't work, but am looking into that one right now ... at lesat now you can see who is connecting where and from where ... | |||
* | Add two checks ... one for setproctitle and one for -lutil ... | Marc G. Fournier | 2000-05-12 | |
| | | | | Don't do anything with them at this time, but am working on that ... | |||
* | Repair list-vs-node confusion that resulted in failure for INNER JOIN ON. | Tom Lane | 2000-05-12 | |
| | | | | | Make it behave correctly when there are more than two tables being joined, also. Update regression test expected outputs. | |||
* | Small cleanup of file. | Bruce Momjian | 2000-05-12 | |
| | ||||
* | More psql help cleanup | Bruce Momjian | 2000-05-11 | |
| | ||||
* | Makefile CFLAGS cleanups. | Bruce Momjian | 2000-05-11 | |
| | ||||
* | Oops, plpgsql didn't have the datetime->timestamp and timespan->interval | Bruce Momjian | 2000-05-11 | |
| | | | | | | | mappings. In fact, it had them backward because it was using the 6.5.* code. Copied them from parser/gram.y, so it is fixed now. Looks like our first 7.0.1 fix. Oops, seems Tom has beat me to it as I was typing this. | |||
* | Fix CLUSTER ... or at least undo the bit-rot it's suffered since 6.5. | Tom Lane | 2000-05-11 | |
| | | | | | It's still pretty fundamentally bogus :-(. Freebie side benefit: ALTER TABLE RENAME works on indexes now. | |||
* | Display -? as -\? under unix for psql. | Bruce Momjian | 2000-05-11 | |
| | ||||
* | Add options and cleanup psql \? and -? help displays | Bruce Momjian | 2000-05-11 | |
| | ||||
* | Update psql \? to show file rather than "fname". | Bruce Momjian | 2000-05-09 | |
| | ||||
* | Forgot that dumpall's output script should 'delete from pg_group' before | Tom Lane | 2000-05-05 | |
| | | | | loading new data, for consistency with its handling of pg_shadow. | |||
* | psql: suppress warnings about too many arguments if the command is not valid ↵ | Peter Eisentraut | 2000-05-05 | |
| | | | | in the first place | |||
* | Spello SERIALIZED -> SERIALIZABLE in psql tab completion | Peter Eisentraut | 2000-05-05 | |
| | ||||
* | ImageViewer transaction fixes | Peter Mount | 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 | 2000-05-05 | |
| | | | | | | 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. | |||
* | Dump contents of pg_group along with pg_shadow. | Tom Lane | 2000-05-05 | |
| | ||||
* | Don't leak a file descriptor when updating pg_pwd file. Also, check for | Tom Lane | 2000-05-04 | |
| | | | | failure of rename() call. | |||
* | Do not try to build libpq++ if class 'string' is not defined in the | Tom Lane | 2000-05-03 | |
| | | | | available C++ header files. | |||
* | Minor fixes ready for 7.0 | Peter Mount | 2000-05-03 | |
| | ||||
* | Update SCO FAQ. Billy G. Allie | Bruce Momjian | 2000-05-02 | |
| | ||||
* | Modify getdatabaseencoding(), pg_encoding_to_char() | Tatsuo Ishii | 2000-05-02 | |
| | | | | | | 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. | |||
* | Reset CurrentMemoryContext to TopMemoryContext at the beginning of error | Tom Lane | 2000-04-30 | |
| | | | | | | | | | | | | 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. | |||
* | Remove bogus 'xid loop detected' check, which actually wasn't detecting | Tom Lane | 2000-04-30 | |
| | | | | loops, but just arbitrarily failing at 1000 locks. | |||
* | Clean up ecpg test files. | Bruce Momjian | 2000-04-29 | |
| | ||||
* | Update pgeasy examples | Bruce Momjian | 2000-04-28 | |
| | ||||
* | Update libpgeasy define. | Bruce Momjian | 2000-04-28 | |
| | ||||
* | Change libpgeasy to take dbname at end like all other interfaces. | Bruce Momjian | 2000-04-28 | |
| | ||||
* | Setting statistic options from SET PG_OPTIONS caused a backend crash | Tom Lane | 2000-04-28 | |
| | | | | | because StatFp never got set in that case. Set it immediately before use to eliminate such problems. | |||
* | plpgsql RAISE statement was careless about the possibility of a NULL | Tom Lane | 2000-04-28 | |
| | | | | | field value being displayed; produced coredump instead of the expected <NULL> display. | |||
* | Except_Intersect_Rewrite() failed to ignore resjunk targetlist entries, | Tom Lane | 2000-04-27 | |
| | | | | | thus causing failure if one sub-select had resjunk entries that the other did not (cf. bug report from Espinosa 4/27/00). | |||
* | Update libpgeasy e-mail address | Bruce Momjian | 2000-04-27 | |
| | ||||
* | Repair problem noted by Elphick: make_rels_by_joins failed to handle | Tom Lane | 2000-04-27 | |
| | | | | | | | | 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... | |||
* | -D switch to postmaster should override any PGDATA environment variable | Tom Lane | 2000-04-27 | |
| | | | | | that might be hanging about. Now it does ... amazing nobody noticed this before ... | |||
* | Tweak outUnique to include uniqColIdx[] field in the printout. This does | Tom Lane | 2000-04-26 | |
| | | | | | not cause any compatibility problems because stored rules don't contain plan nodes --- in fact, we don't even have a readfunc for Unique nodes. | |||
* | On HPUX, shl_load should be called with options BIND_IMMEDIATE rather | Tom Lane | 2000-04-26 | |
| | | | | | | | than BIND_DEFERRED. That way, if the loaded library has unresolved references, shl_load fails cleanly. As we had it, shl_load would succeed and then the dynlinker would call abort() when we try to call into the loaded library. abort()ing a backend is uncool. | |||
* | Fix include "" to <> | Bruce Momjian | 2000-04-26 | |
| | ||||
* | Remove DriverClass.java. It is generated by the compile. | Bruce Momjian | 2000-04-26 | |
| | ||||
* | Add res clear to example | Bruce Momjian | 2000-04-26 | |
| | ||||
* | Install Peter's Makefile. | Bruce Momjian | 2000-04-26 | |
| | ||||
* | Reinstalled revision 1.36 (looks Peter Mount installed | Jan Wieck | 2000-04-26 | |
| | | | | | | a new JDBC Makefile here by accident) Jan | |||
* | third attempt | Peter Mount | 2000-04-26 | |
| | ||||
* | Attempt III | Peter Mount | 2000-04-26 | |
| | ||||
* | Another attempt | Peter Mount | 2000-04-26 | |
| | ||||
* | Update libpgeasy readme. | Bruce Momjian | 2000-04-26 | |
| | ||||
* | Make c++ examples return 0 from main(). | Bruce Momjian | 2000-04-25 | |
| | ||||
* | Fix libpq example return values | Bruce Momjian | 2000-04-25 | |
| | ||||
* | change reindex ERROR/NOTICE message | Hiroshi Inoue | 2000-04-25 | |
| |