Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | wups, took out one memset too many ... | Tom Lane | 2003-07-22 |
| | |||
* | Error message editing in backend/libpq, backend/postmaster, backend/tcop. | Tom Lane | 2003-07-22 |
| | | | | | Along the way, fix some logic problems in pgstat_initstats, notably the bogus assumption that malloc returns zeroed memory. | ||
* | Fix threading configure tests, from Peter. | Bruce Momjian | 2003-07-22 |
| | |||
* | Remove link of tarball | Teodor Sigaev | 2003-07-22 |
| | |||
* | Mark tsearch v1 as deprecated | Teodor Sigaev | 2003-07-22 |
| | |||
* | Fix to prevent SQL injection attacks for code calling setObject(int,Object,int) | Barry Lind | 2003-07-22 |
| | | | | | | | | | | where Object is a user supplied String and the type is a numeric type (i.e. INTEGER,LONG,etc). Also applied a patch from Kim Ho that fixes compile problems under jdk1.2 Modified Files: jdbc/org/postgresql/Driver.java.in jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java | ||
* | Add: | Bruce Momjian | 2003-07-22 |
| | | | | > o Allow PL/pgSQL to name columns by ordinal position, e.g. rec.(3) | ||
* | Add: | Bruce Momjian | 2003-07-22 |
| | | | | > * Prevent COMMENT ON DATABASE from using a database name | ||
* | Don't report sequendces in pg_tables. | Bruce Momjian | 2003-07-22 |
| | |||
* | Back out comment on GucContexts. | Bruce Momjian | 2003-07-21 |
| | |||
* | Applied patch from dmitry@openratings.com to fix parsing of array values | Barry Lind | 2003-07-21 |
| | | | | | | Modified Files: jdbc/org/postgresql/Driver.java.in jdbc/org/postgresql/jdbc2/Array.java | ||
* | Error message editing in backend/access. | Tom Lane | 2003-07-21 |
| | |||
* | Fix regression test broken by recent view change. | Tom Lane | 2003-07-21 |
| | |||
* | Add: | Bruce Momjian | 2003-07-21 |
| | | | | > o Add PL/PHP (Joe, Jan) | ||
* | Add: | Bruce Momjian | 2003-07-21 |
| | | | | | > * Have AFTER triggers execute after the appropriate SQL statement in a > function, not at the end of the function | ||
* | Error message editing in backend/executor. | Tom Lane | 2003-07-21 |
| | |||
* | Fix relkind test for pg_tables. | Bruce Momjian | 2003-07-21 |
| | | | | Mike Quinn | ||
* | Fix output to psql:tsearch2.sql:13: NOTICE: ... "pg_ts_dict_pkey" | Teodor Sigaev | 2003-07-21 |
| | |||
* | tsearch2 module | Teodor Sigaev | 2003-07-21 |
| | |||
* | I updated Japanese translation of PostgreSQL FAQ | Bruce Momjian | 2003-07-21 |
| | | | | | | | according to your version on May/30. (HTML and TEXT files are gzipped.) Jun Kuwamura | ||
* | Error message editing in backend/catalog. | Tom Lane | 2003-07-21 |
| | |||
* | Another round of error message editing, covering backend/commands/. | Tom Lane | 2003-07-20 |
| | |||
* | Update URL's. | Bruce Momjian | 2003-07-20 |
| | |||
* | Done: | Bruce Momjian | 2003-07-20 |
| | | | | * -Allow LIMIT/OFFSET to use expressions (Tom) | ||
* | Add Opteron/Itanium comment. | Bruce Momjian | 2003-07-20 |
| | |||
* | Add: | Bruce Momjian | 2003-07-20 |
| | | | | | > * Delay resolution of array expression type so assignment coercion > can be performed on empty array expressions (Joe) | ||
* | Error message editing: finish up undone task of reporting the problem | Tom Lane | 2003-07-19 |
| | | | | xid when we fail to access pg_clog. | ||
* | Add ereport-related functions to GETTEXT_TRIGGERS list. | Tom Lane | 2003-07-19 |
| | |||
* | Another round of error message editing, covering backend/parser/. | Tom Lane | 2003-07-19 |
| | |||
* | Add tablespace email. | Bruce Momjian | 2003-07-19 |
| | |||
* | First bits of work on error message editing. | Tom Lane | 2003-07-18 |
| | |||
* | Add cleaner formatting to config file. | Bruce Momjian | 2003-07-18 |
| | |||
* | Added more compat stuff ot the parser. | Michael Meskes | 2003-07-18 |
| | |||
* | Fix subpath and subltree. Allow to return '' value. | Teodor Sigaev | 2003-07-18 |
| | | | | subpath(ltree,0,0) returns ''. | ||
* | Stephen Robert Norris wrote: | Bruce Momjian | 2003-07-18 |
| | | | | | | | | | | | | | | > Well, no. What it says is that certain values must be escaped (but > doesn't say which ones). Then it says there are alternate escape > sequences for some values, which it lists. > > It doesn't say "The following table contains the characters which must > be escaped:", which would be much clearer (and actually useful). Attached documentation patch updates the wording for bytea input escaping, per complaint by Stephen Norris above. Joe Conway | ||
* | It seems some case-insensitive locales sort upper case before lower | Tom Lane | 2003-07-18 |
| | | | | | (BBBB before bbbb) and others the other way around. Provide comparison files that cater to both approaches. | ||
* | Add an upper limit to IS_VALID_JULIAN() to defend against overflow in | Tom Lane | 2003-07-17 |
| | | | | | date2j(). This ensures we give reasonable errors instead of bizarre behavior for input dates far in the future. | ||
* | Oh, for crying in a bucket ... relax Assert so that glibc's strxfrm | Tom Lane | 2003-07-17 |
| | | | | does not dump core. | ||
* | Work around buggy strxfrm() present in some Solaris releases. | Tom Lane | 2003-07-17 |
| | |||
* | For COMMENT ON DATABASE where database name is unknown or not the current | Tom Lane | 2003-07-17 |
| | | | | | | database, emit a WARNING and do nothing, rather than raising ERROR. Per recent discussion in which we concluded this is the best way to deal with database dumps that are reloaded into a database of a new name. | ||
* | Repair boundary-case bug introduced by patch of two months ago that | Tom Lane | 2003-07-17 |
| | | | | | | | | fixed incorrect initial setting of StartUpID. The logic in XLogWrite() expects that Write->curridx is advanced to the next page as soon as LogwrtResult points to the end of the current page, but StartupXLOG() failed to make that happen when the old WAL ended exactly on a page boundary. Per trouble report from Hannu Krosing. | ||
* | Allow blanks at the end of numerical values. | Michael Meskes | 2003-07-17 |
| | |||
* | Fixed some bugs in Informix compat functions. | Michael Meskes | 2003-07-17 |
| | |||
* | Make EXTRACT(TIMEZONE) and SET/SHOW TIMEZONE follow the SQL convention | Tom Lane | 2003-07-17 |
| | | | | | | for the sign of timezone offsets, ie, positive is east from UTC. These were previously out of step with other operations that accept or show timezones, such as I/O of timestamptz values. | ||
* | Add defenses against trying to attach qual conditions to a setOperation | Tom Lane | 2003-07-16 |
| | | | | | | query node, since that won't work unless the planner is upgraded. Someday we should try to support at least some cases of this, but for now just plug the hole in the dike. Per discussion with Dmitry Tkach. | ||
* | Applied patch to fix two compatibility functions. | Michael Meskes | 2003-07-16 |
| | |||
* | Now that I look, SHOW TRANSACTION_ISOLATION isn't quite consistent | Tom Lane | 2003-07-15 |
| | | | | with SET TRANSACTION_ISOLATION, either. | ||
* | Cause SHOW DATESTYLE to produce a string that will be accepted by SET | Tom Lane | 2003-07-15 |
| | | | | | | DATESTYLE, for instance 'SQL, European' instead of 'SQL with European conventions'. Per gripe a month or two back from Barry Lind. | ||
* | Avoid use of int64_t, which seems not to be very portable. Simplify | Tom Lane | 2003-07-15 |
| | | | | | padding logic for struct sockaddr_storage --- original version did not do what it claimed to when SALEN is defined. | ||
* | OSF supports pthreads, per Philip Yarra. | Tom Lane | 2003-07-15 |
| |