Age | Commit message (Collapse) | Author |
|
standard type aliases as well as those known in pg_type. Similar to recent change in plperl.
|
|
o Allow row and record variables to be set to NULL constants,
and allow NULL tests on such variables
|
|
>
> * Consider decreasing the amount of memory used by PrivateRefCount
>
> http://archives.postgresql.org/pgsql-hackers/2006-11/msg00797.php
> http://archives.postgresql.org/pgsql-hackers/2007-01/msg00752.php
>
|
|
|
|
> * Increase locking when DROPing objects so dependent objects cannot
> get dropped while the DROP operation is happening
>
> http://archives.postgresql.org/pgsql-hackers/2007-01/msg00937.php
|
|
o Allow UPDATE/DELETE WHERE CURRENT OF cursor
> http://archives.postgresql.org/pgsql-hackers/2007-01/msg01014.php
|
|
>
> * Add missing operators for geometric data types
>
> Some geometric types do not have the full suite of geometric operators,
> e.g. box @> point
>
|
|
bytes and backslashes, remove "ASCII" mention. Backpatch to 8.2.X.
|
|
|
|
Backpatch to 8.2.X.
|
|
|
|
environment variables. Backpatch to 8.2.X.
|
|
file permissions on Windows.
|
|
< o Check .pgpass file permissions
>
|
|
anyone cares because the last history change was for PostgreSQL 7.1.
|
|
|
|
<
> o Check .pgpass file permissions
|
|
|
|
> * Fix IS OF so it matches the ISO specification, and add documentation
>
> http://archives.postgresql.org/pgsql-patches/2003-08/msg00060.php
> http://archives.postgresql.org/pgsql-hackers/2007-02/msg00060.php
|
|
ISO SQL behavior. Backpatch removal to 8.2.X.
|
|
< o ARRAY[[1,2],[3,4]])[1] should return the same values as
< ARRAY[[1,2],[3,4]])[1:1];
<
|
|
|
|
<P><I>src/Makefile.custom</I> can be used to set environment variables,
like <I>CUSTOM_COPT</I>, that are used for every compile.
|
|
Julian technically is noon to noon.
|
|
|
|
|
|
< * Consider allowing configuration of TOAST thresholds
> * Allow user configuration of TOAST thresholds
|
|
> * Consider allowing configuration of TOAST thresholds
>
> http://archives.postgresql.org/pgsql-hackers/2007-02/msg00213.php
>
|
|
|
|
> * Allow UPDATEs on only non-referential integrity columns not to conflict
> with referential integrity locks
>
> http://archives.postgresql.org/pgsql-hackers/2007-02/msg00073.php
|
|
> * Allow INSERT/UPDATE ... RETURNING inside a SELECT 'FROM' clause
>
> http://archives.postgresql.org/pgsql-general/2006-09/msg00803.php
> http://archives.postgresql.org/pgsql-hackers/2006-10/msg00693.php
>
|
|
if you do not trust local users.
|
|
EXTRACT().
|
|
> * -Add ISO day of week format 'ID' to to_char() where Monday = 1
|
|
|
|
> * -Add a field 'isoyear' to extract(), based on the ISO week
|
|
< o Add long file support for binary pg_dump output
<
< While Win32 supports 64-bit files, the MinGW API does not,
< meaning we have to build an fseeko replacement on top of the
< Win32 API, and we have to make sure MinGW handles it. Another
< option is to wait for the MinGW project to fix it, or use the
< code from the LibGW32C project as a guide.
<
< http://archives.postgresql.org/pgsql-hackers/2006-12/msg00551.php
<
> o -Add long file support for binary pg_dump output
|
|
string.
|
|
< Currently, ALTER USER and ALTER DATABASE support per-user and
> Currently ALTER USER and ALTER DATABASE support per-user and
< Currently, subtracting one date from another that crosses a
> Currently subtracting one date from another that crosses a
< Currently, SQL-language functions can only refer to parameters via $1, etc
> Currently SQL-language functions can only refer to dollar parameters,
> e.g. $1
< Currently, queries prepared via the libpq API are planned on first
> Currently queries prepared via the libpq API are planned on first
< Currently, SET <tab> causes a database lookup to check all
> Currently SET <tab> causes a database lookup to check all
< Currently, all statement results are transferred to the libpq
> Currently all statement results are transferred to the libpq
|
|
* Allow SQL-language functions to reference parameters by parameter name
Currently SQL-language functions can only refer to parameters via $1, etc
|
|
current/requested headings, add link to table from text.
|
|
> * Allow holdable cursors in SPI
|
|
>
> o Allow row and record variables to be set to NULL constants,
> and allow NULL tests on such variables
>
> Because a row is not scalar, do not allow assignment
> from NULL-valued scalars.
|
|
floating point.
|
|
> o Consider reducing on-disk varlena length from four to two
> because a heap row cannot be more than 64k in length
|
|
|
|
|
|
|
|
detection of tabs are added in the future.
|
|
to_timestamp():
- ID for day-of-week
- IDDD for day-of-year
This makes it possible to convert ISO week dates to and from text
fully represented in either week ('IYYY-IW-ID') or day-of-year
('IYYY-IDDD') format.
I have also added an 'isoyear' field for use with extract / date_part.
Brendan Jurd
|