Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-09-01 | patch from Thomas O'Dowd to ensure that connections are closed | Dave Cramer | |
2002-09-01 | testing for insertRow | Dave Cramer | |
2002-09-01 | Update MEMSET_LOOP_LIMIT to 1024 because it is the best value for most | Bruce Momjian | |
platforms. | |||
2002-09-01 | patch to allow insertRow on an empty resultSet | Dave Cramer | |
2002-09-01 | Changed to reflect the current reality, ie we do support updateable resultsets | Dave Cramer | |
2002-09-01 | Improve footer length computation for psql. | Bruce Momjian | |
Greg Sabino Mullan | |||
2002-09-01 | Add log_duration to GUC/postgresql.conf. | Bruce Momjian | |
Rename debug_print_query to log_statement and rename show_query_stats to show_statement_stats. | |||
2002-09-01 | Add: | Bruce Momjian | |
> o Add table function support to pltcl, plperl, plpython | |||
2002-09-01 | plpgsql functions can return RECORD, per Neil Conway. | Tom Lane | |
2002-09-01 | Minor copy-editing. | Tom Lane | |
2002-09-01 | Code cleanups: make non-implicit WITHOUT FUNCTION casts work, avoid | Tom Lane | |
redundant pg_cast searches, fix obsolete comments. | |||
2002-09-01 | Remove mention of wal_files in a SHOW example. | Bruce Momjian | |
2002-09-01 | Remove code that suggested increasing wal_files. | Bruce Momjian | |
2002-09-01 | Done: | Bruce Momjian | |
> o -SELECT col FROM tab WHERE numeric_col = 10.1 fails, requires quotes | |||
2002-09-01 | Mark the float8 -> int8 cast as implicit. This resolves the problem | Tom Lane | |
pointed out by Barry Lind: UPDATE bigintcol = 10000000000 fails because the constant is initially taken as float8. We really need a better way, but it's not gonna happen for 7.3. Also, remove int4reltime() function, which is redundant with the existing binary-compatibility coercion path from int4 to reltime, and probably has been unreachable code for a long while. | |||
2002-08-31 | Code review for domain-constraints patch. Use a new ConstraintTest node | Tom Lane | |
type for runtime constraint checks, instead of misusing the parse-time Constraint node for the purpose. Fix some damage introduced into type coercion logic; in particular ensure that a coerced expression tree will read out the correct result type when inspected (patch had broken some RelabelType cases). Enforce domain NOT NULL constraints against columns that are omitted from an INSERT. | |||
2002-08-31 | Wups, didn't mean to commit that just yet. | Tom Lane | |
2002-08-31 | The UNDEFOID later causes an assertion failure in heap_formtuple when | Tom Lane | |
you try to use the tupdesc to build a tuple. Joe Conway | |||
2002-08-31 | Code review for pg_locks feature. Make shmemoffset of PROCLOCK structs | Tom Lane | |
available (else there's no way to interpret the list links). Change pg_locks view to show transaction ID locks separately from ordinary relation locks. Avoid showing N duplicate rows when the same lock is held multiple times (seems unlikely that users care about exact hold count). Improve documentation. | |||
2002-08-31 | *** empty log message *** | Bruce Momjian | |
2002-08-30 | Add expected tuple descriptor to ReturnSetInfo information for table | Tom Lane | |
functions, per suggestion from John Gray and Joe Conway. Also, fix plpgsql RETURN NEXT to verify that returned values match the expected tupdesc. | |||
2002-08-30 | Updates to reflect availability of autocommit option. | Tom Lane | |
2002-08-30 | AUTOCOMMIT mode is now an available backend GUC variable; setting it | Tom Lane | |
to false provides more SQL-spec-compliant behavior than we had before. I am not sure that setting it false is actually a good idea yet; there is a lot of client-side code that will probably be broken by turning autocommit off. But it's a start. Loosely based on a patch by David Van Wie. | |||
2002-08-30 | Fix for breakage of C-coded SRFs, from Joe Conway. | Tom Lane | |
2002-08-30 | Add attisinherited column to pg_attribute; use it to guard against | Tom Lane | |
column additions, deletions, and renames that would let a child table get out of sync with its parent. Patch by Alvaro Herrera, with some kibitzing by Tom Lane. | |||
2002-08-30 | Back out unintented tab change. | Bruce Momjian | |
2002-08-30 | Remove pgaccess from Makefile. | Bruce Momjian | |
2002-08-30 | Run autoconf. | Bruce Momjian | |
2002-08-30 | Update documentation for --with-perl. | Bruce Momjian | |
2002-08-30 | Improve wording after wal_files removal. | Bruce Momjian | |
2002-08-30 | Complete TODO item: | Bruce Momjian | |
* Remove wal_files postgresql.conf option because WAL files are now recycled | |||
2002-08-30 | Remove pgaccess from CVS. It has its own home now. | Bruce Momjian | |
2002-08-30 | Re-enable perl configure tests for psql help file generation. | Bruce Momjian | |
2002-08-30 | Back out password packet length check. | Bruce Momjian | |
Improve wording of pre-7.3 syntax mention. | |||
2002-08-30 | perl5 interface moved to gborg | Marc G. Fournier | |
2002-08-30 | libpgeasy moved to gborg ... | Marc G. Fournier | |
2002-08-30 | Fix off-by-one allocation error in PasswordFromFile(), per Gordon Runkle. | Tom Lane | |
2002-08-30 | Add comment on old sytax for SELECT FOR UPDATE/LIMIT and COPY. | Bruce Momjian | |
2002-08-30 | Revert _LARGEFILE64_SOURCE addition; good try but doesn't work, | Tom Lane | |
at least not on HPUX 10.20, and there's no reason to think it is needed on later versions. | |||
2002-08-30 | intagg subdirectory was missing. | Tom Lane | |
2002-08-30 | Group-manipulating code neglected to fill in array element type, | Tom Lane | |
which is now required. | |||
2002-08-30 | PL/pgSQL functions can return sets. Neil Conway's patch, modified so | Tom Lane | |
that the functionality is available to anyone via ReturnSetInfo, rather than hard-wiring it to PL/pgSQL. | |||
2002-08-29 | Fix a bug introduced in 7.2. | Hiroshi Inoue | |
2002-08-29 | > > > > If you want to put in security restrictions that are actually useful, | Bruce Momjian | |
> > > > where is the code to verify that PGPASSWORDFILE points at a > > > > non-world-readable file? That needs to be there now, not later, or > > > > we'll have people moaning about backward compatibility when we finally > > > > do plug that hole. Alvaro Herrera | |||
2002-08-29 | Sir Mordred The Traitor <mordred@s-mail.com> writes: | Bruce Momjian | |
> Upon invoking a polygon(integer, circle) function a > src/backend/utils/adt/geo_ops.c:circle_poly() function will gets > called, which suffers from a buffer overflow. > > 2) A src/backend/adt/utils/geo_ops.c:path_encode() fails to detect a > buffer overrun condition. It is called in multiple places, the most > interesting are path_out() and poly_out() functions. > 5) A src/backend/utils/adt/geo_ops.c:path_add() also fails to detect > a simple buffer overrun. I've attached a patch which should fix these problems. Neil Conway | |||
2002-08-29 | Add cube changes file. | Bruce Momjian | |
2002-08-29 | The changes I have made are described in CHANGES. This was based on | Bruce Momjian | |
diffs to 7.3-devel and may not be applicable to 7.2. I have included a change covered by a previous bugfix patch I submitted (the problem with -.1 not being accepted by cube_in). It does not include a fix for the potential buffer overrun issue I reported for cube_yyerror in cubeparse.y. Bruno Wolff III | |||
2002-08-29 | Make pg_resetxlog options parsing more standard and prepare messages for | Peter Eisentraut | |
translation. | |||
2002-08-29 | Create "po" subdirectory before writing there. | Peter Eisentraut | |
2002-08-29 | Workaround for broken large file support on HP-UX | Peter Eisentraut | |