git.postgresql.org Git - postgresql.git/log

git projects / postgresql.git / log
? search:
summary | shortlog | log | commit | commitdiff | tree
first ⋅ prev ⋅ next
postgresql.git
17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月27日 20:37:43 +0000 (20:37 +0000)]
Add to TODO:

>
> * Consider being smarter about memory and external files used during
> sorts
>
> http://archives.postgresql.org/pgsql-hackers/2007-11/msg01101.php
> http://archives.postgresql.org/pgsql-hackers/2007-12/msg00045.php

17 years agoAdd URL for:
commit | commitdiff | tree
Bruce Momjian [2008年3月27日 20:31:04 +0000 (20:31 +0000)]
Add URL for:

* Consider allowing control of upper/lower case folding of unquoted
identifiers

> http://archives.postgresql.org/pgsql-hackers/2008-03/msg00849.php

17 years agoWhen we have successfully optimized a MIN or MAX aggregate into an indexscan,
commit | commitdiff | tree
Tom Lane [2008年3月27日 19:06:14 +0000 (19:06 +0000)]
When we have successfully optimized a MIN or MAX aggregate into an indexscan,
the query result must be exactly one row (since we don't do this when there's
any GROUP BY). Therefore any ORDER BY or DISTINCT attached to the query is
useless and can be dropped. Aside from saving useless cycles, this protects
us against problems with matching the hacked-up tlist entries to sort clauses,
as seen in a bug report from Taiki Yamaguchi. We might need to work harder
if we ever try to optimize grouped queries with this approach, but this
solution will do for now.

17 years agoRemove ipcclean utility command --- didn't work on all Unixes and on
commit | commitdiff | tree
Bruce Momjian [2008年3月27日 17:24:16 +0000 (17:24 +0000)]
Remove ipcclean utility command --- didn't work on all Unixes and on
Windows. Users should use their operating system tools instead.

17 years agoSorry, copied wrong files.
commit | commitdiff | tree
Michael Meskes [2008年3月27日 08:40:02 +0000 (08:40 +0000)]
Sorry, copied wrong files.

17 years ago- Moved from PQsetdbLogin to PQconnectDB.
commit | commitdiff | tree
Michael Meskes [2008年3月27日 07:56:02 +0000 (07:56 +0000)]
- Moved from PQsetdbLogin to PQconnectDB.
- Correctly parse connect options.
- Changed regression tests accordingly.

17 years agoReduce the need for frontend programs to include "postgres.h" by refactoring
commit | commitdiff | tree
Tom Lane [2008年3月27日 03:57:34 +0000 (03:57 +0000)]
Reduce the need for frontend programs to include "postgres.h" by refactoring
inclusions in src/include/catalog/*.h files. The main idea here is to push
function declarations for src/backend/catalog/*.c files into separate headers,
rather than sticking them into the corresponding catalog definition file as
has been done in the past. This commit only carries out that idea fully for
pg_proc, pg_type and pg_conversion, but that's enough for the moment ---
if pg_list.h ever becomes unsafe for frontend code to include, we'll need
to work a bit more.

Zdenek Kotala

17 years agoMove the HTSU_Result enum definition into snapshot.h, to avoid including
commit | commitdiff | tree
Alvaro Herrera [2008年3月26日 21:10:39 +0000 (21:10 +0000)]
Move the HTSU_Result enum definition into snapshot.h, to avoid including
tqual.h into heapam.h. This makes all inclusion of tqual.h explicit.

I also sorted alphabetically the includes on some source files.

17 years agoRename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.
commit | commitdiff | tree
Alvaro Herrera [2008年3月26日 18:48:59 +0000 (18:48 +0000)]
Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files.
Per complaint from Tom Lane.

17 years agoFix bad spelling and worse grammar in recent doc commits. Propagate
commit | commitdiff | tree
Tom Lane [2008年3月26日 16:34:47 +0000 (16:34 +0000)]
Fix bad spelling and worse grammar in recent doc commits. Propagate
pg_dump --ignore-version comments into pg_dumpall and pg_restore pages.

17 years agoSeparate snapshot management code from tuple visibility code, create a
commit | commitdiff | tree
Alvaro Herrera [2008年3月26日 16:20:48 +0000 (16:20 +0000)]
Separate snapshot management code from tuple visibility code, create a
snapmgmt.c file for the former. The header files have also been reorganized
in three parts: the most basic snapshot definitions are now in a new file
snapshot.h, and the also new snapmgmt.h keeps the definitions for snapmgmt.c.
tqual.h has been reduced to the bare minimum.

This patch is just a first step towards managing live snapshots within a
transaction; there is no functionality change.

Per my proposal to pgsql-patches on 20080318191940.GB27458@alvh.no-ip.org and
subsequent discussion.

17 years agoInclude \password in the psql help.
commit | commitdiff | tree
Magnus Hagander [2008年3月26日 15:24:56 +0000 (15:24 +0000)]
Include \password in the psql help.

While at it, change the order of the documented options to be
alphabetically again.

17 years agoImprove documentation for odd array slice behavior.
commit | commitdiff | tree
Bruce Momjian [2008年3月26日 14:43:20 +0000 (14:43 +0000)]
Improve documentation for odd array slice behavior.

17 years agoStrengthen warnings about using pg_dump's -i option.
commit | commitdiff | tree
Bruce Momjian [2008年3月26日 14:32:22 +0000 (14:32 +0000)]
Strengthen warnings about using pg_dump's -i option.

17 years agoUpdate TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月26日 02:39:46 +0000 (02:39 +0000)]
Update TODO:

< o Consider invalidating the cache or keeping seperate cached
< copies when search_path changes
> o Consider keeping seperate cached copies when search_path changes

17 years agoAdded to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月26日 01:49:51 +0000 (01:49 +0000)]
Added to TODO:

>
> * Consider transaction start/end performance improvements
>
> http://archives.postgresql.org/pgsql-hackers/2007-07/msg00948.php
> http://archives.postgresql.org/pgsql-hackers/2008-03/msg00361.php

17 years agoFix core dump in contrib/xml2's xpath_table() when the input query returns
commit | commitdiff | tree
Tom Lane [2008年3月26日 01:19:04 +0000 (01:19 +0000)]
Fix core dump in contrib/xml2's xpath_table() when the input query returns
a NULL value. Per bug #4058.

17 years agoUpdate documentation for recent DTrace changes. Patch from Robert Lor.
commit | commitdiff | tree
Neil Conway [2008年3月25日 22:50:27 +0000 (22:50 +0000)]
Update documentation for recent DTrace changes. Patch from Robert Lor.

17 years agoSimplify and standardize conversions between TEXT datums and ordinary C
commit | commitdiff | tree
Tom Lane [2008年3月25日 22:42:46 +0000 (22:42 +0000)]
Simplify and standardize conversions between TEXT datums and ordinary C
strings. This patch introduces four support functions cstring_to_text,
cstring_to_text_with_len, text_to_cstring, and text_to_cstring_buffer, and
two macros CStringGetTextDatum and TextDatumGetCString. A number of
existing macros that provided variants on these themes were removed.

Most of the places that need to make such conversions now require just one
function or macro call, in place of the multiple notational layers that used
to be needed. There are no longer any direct calls of textout or textin,
and we got most of the places that were using handmade conversions via
memcpy (there may be a few still lurking, though).

This commit doesn't make any serious effort to eliminate transient memory
leaks caused by detoasting toasted text objects before they reach
text_to_cstring. We changed PG_GETARG_TEXT_P to PG_GETARG_TEXT_PP in a few
places where it was easy, but much more could be done.

Brendan Jurd and Tom Lane

17 years agoDone:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 20:18:18 +0000 (20:18 +0000)]
Done:

> * -Avoid tuple some tuple copying in sort routines

17 years agoAdd a new tuplestore API function, tuplestore_putvalues(). This is
commit | commitdiff | tree
Neil Conway [2008年3月25日 19:26:54 +0000 (19:26 +0000)]
Add a new tuplestore API function, tuplestore_putvalues(). This is
identical to tuplestore_puttuple(), except it operates on arrays of
Datums + nulls rather than a fully-formed HeapTuple. In several places
that use the tuplestore API, this means we can avoid creating a
HeapTuple altogether, saving a copy.

17 years agoUpdate TODO wording:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 13:09:39 +0000 (13:09 +0000)]
Update TODO wording:

* Simplify integer cross-data-type operators

17 years agoReword Win32 rint() item, per Tom.
commit | commitdiff | tree
Alvaro Herrera [2008年3月25日 12:55:38 +0000 (12:55 +0000)]
Reword Win32 rint() item, per Tom.

17 years agoAdd URLs to previous discussions, per Simon.
commit | commitdiff | tree
Alvaro Herrera [2008年3月25日 12:50:47 +0000 (12:50 +0000)]
Add URLs to previous discussions, per Simon.

17 years agoadded ECPGget_PGconn to exports.txt
commit | commitdiff | tree
Michael Meskes [2008年3月25日 12:45:25 +0000 (12:45 +0000)]
added ECPGget_PGconn to exports.txt

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 02:58:09 +0000 (02:58 +0000)]
Add to TODO:

>
> * Add SQL-standard array_agg() and unnest() array functions
>
> http://archives.postgresql.org/pgsql-hackers/2008-01/msg01017.php
>

17 years agoAdd to pl/pgsql TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 02:47:49 +0000 (02:47 +0000)]
Add to pl/pgsql TODO:

>
> o Consider invalidating the cache or keeping seperate cached
> copies when search_path changes
>
> http://archives.postgresql.org/pgsql-hackers/2008-01/msg01009.php

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 02:41:21 +0000 (02:41 +0000)]
Add to TODO:

>
> * Add more cross-data-type operators
>
> http://archives.postgresql.org/pgsql-bugs/2008-01/msg00189.php

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 02:38:34 +0000 (02:38 +0000)]
Add to TODO:

> * Detect deadlocks involving LockBufferForCleanup()
>
> http://archives.postgresql.org/pgsql-hackers/2008-01/msg00873.php

17 years agoAdd to psql TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 02:33:37 +0000 (02:33 +0000)]
Add to psql TODO:

>
> o Improve display if enums
>
> http://archives.postgresql.org/pgsql-hackers/2008-01/msg00826.php
>
>

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 02:23:43 +0000 (02:23 +0000)]
Add to TODO:

>
> o Fix port/rint.c to be spec-compliant
>
> http://archives.postgresql.org/pgsql-hackers/2008-01/msg00808.php

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 02:17:17 +0000 (02:17 +0000)]
Add to TODO:

>
> * Consider sorting entries before inserting into btree index
>
> http://archives.postgresql.org/pgsql-general/2008-01/msg01010.php

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 02:11:22 +0000 (02:11 +0000)]
Add to TODO:

>
> * Improve detection of shared memory segments being used by other
> FreeBSD jails
>
> http://archives.postgresql.org/pgsql-hackers/2008-01/msg00656.php

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 00:42:23 +0000 (00:42 +0000)]
Add to TODO:

>
> * Move pgfoundry's xlogdump to /contrib and have it rely more closely
> on the WAL backend code
>
> http://archives.postgresql.org/pgsql-hackers/2007-11/msg00035.php
>

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 00:28:54 +0000 (00:28 +0000)]
Add to TODO:

>
> * Have resource managers report the duration of their status changes
>
> http://archives.postgresql.org/pgsql-hackers/2007-10/msg01468.php

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 00:14:53 +0000 (00:14 +0000)]
Add to TODO:

>
> * Be more aggressive about creating WAL files
>
> http://archives.postgresql.org/pgsql-hackers/2007-10/msg01325.php

17 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 00:11:48 +0000 (00:11 +0000)]
Add:

> o Prevent concurrent CREATE TABLE table1 from sometimes returning
> a cryptic error message
>
> http://archives.postgresql.org/pgsql-bugs/2007-10/msg00169.php

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 00:07:12 +0000 (00:07 +0000)]
Add to TODO:

>
> * Have /contrib/dblink reuse unnamed connections
>
> http://archives.postgresql.org/pgsql-hackers/2007-10/msg00895.php

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 00:05:10 +0000 (00:05 +0000)]
Add to TODO:

> * Remove old-style routines for manipulating tuples
>
> http://archives.postgresql.org/pgsql-hackers/2007-10/msg00851.php

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 00:02:03 +0000 (00:02 +0000)]
Add to TODO:

>
> * Create three versions of libpgport to simplify client code
>
> http://archives.postgresql.org/pgsql-hackers/2007-10/msg00154.php
>

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月25日 00:00:30 +0000 (00:00 +0000)]
Add to TODO:

>
> * Fix regular expression bug when using complex back-references
>
> http://archives.postgresql.org/pgsql-bugs/2007-10/msg00000.php

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月24日 23:46:21 +0000 (23:46 +0000)]
Add to TODO:

>
> * Allow xml arrays to be cast to other data types
>
> http://archives.postgresql.org/pgsql-hackers/2007-09/msg00981.php
> http://archives.postgresql.org/pgsql-hackers/2007-10/msg00231.php
> http://archives.postgresql.org/pgsql-hackers/2007-11/msg00471.php
>

17 years agoWhen a relation has been proven empty by constraint exclusion, propagate that
commit | commitdiff | tree
Tom Lane [2008年3月24日 21:53:04 +0000 (21:53 +0000)]
When a relation has been proven empty by constraint exclusion, propagate that
knowledge up through any joins it participates in. We were doing that already
in some special cases but not in the general case. Also, defend against zero
row estimates for the input relations in cost_mergejoin --- this fix may have
eliminated the only scenario in which that can happen, but be safe. Per
report from Alex Solovey.

17 years agoUse new errdetail_log() mechanism to provide a less klugy way of reporting
commit | commitdiff | tree
Tom Lane [2008年3月24日 19:47:35 +0000 (19:47 +0000)]
Use new errdetail_log() mechanism to provide a less klugy way of reporting
large numbers of dependencies on a role that couldn't be dropped.
Per a comment from Alvaro.

17 years agoFix various infelicities that have snuck into usage of errdetail() and
commit | commitdiff | tree
Tom Lane [2008年3月24日 19:12:49 +0000 (19:12 +0000)]
Fix various infelicities that have snuck into usage of errdetail() and
friends. Avoid double translation of some messages, ensure other messages
are exposed for translation (and make them follow the style guidelines),
avoid unsafe passing of an unpredictable message text as a format string.

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月24日 18:24:30 +0000 (18:24 +0000)]
Add to TODO:

>
> * Research reducing deTOASTing in more places
>
> http://archives.postgresql.org/pgsql-hackers/2007-09/msg00895.php

17 years agoAdjust the recent patch for reporting of deadlocked queries so that we report
commit | commitdiff | tree
Tom Lane [2008年3月24日 18:22:36 +0000 (18:22 +0000)]
Adjust the recent patch for reporting of deadlocked queries so that we report
query texts only to the server log. This eliminates the issue of possible
leaking of security-sensitive data in other sessions' queries. Since the
log is presumed secure, we can now log the queries of all sessions involved
in the deadlock, whether or not they belong to the same user as the one
reporting the failure.

17 years agoAdd a new ereport auxiliary function errdetail_log(), which works the same as
commit | commitdiff | tree
Tom Lane [2008年3月24日 18:08:47 +0000 (18:08 +0000)]
Add a new ereport auxiliary function errdetail_log(), which works the same as
errdetail except the string goes only to the server log, replacing the normal
errdetail there. This provides a reasonably clean way of dealing with error
details that are too security-sensitive or too bulky to send to the client.

This commit just adds the infrastructure --- actual uses to follow.

17 years agoAdd URL for:
commit | commitdiff | tree
Bruce Momjian [2008年3月24日 17:48:07 +0000 (17:48 +0000)]
Add URL for:

* SMP scalability improvements

> http://archives.postgresql.org/pgsql-hackers/2007-09/msg00206.php

17 years agoAdd URL to:
commit | commitdiff | tree
Bruce Momjian [2008年3月24日 17:41:16 +0000 (17:41 +0000)]
Add URL to:

* SMP scalability improvements

> http://archives.postgresql.org/pgsql-hackers/2008-03/msg00361.php

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月24日 17:29:35 +0000 (17:29 +0000)]
Add to TODO:

>
> * SMP scalability improvements
>
> http://archives.postgresql.org/pgsql-hackers/2007-07/msg00439.php

17 years agoAdd URL:
commit | commitdiff | tree
Bruce Momjian [2008年3月24日 16:11:27 +0000 (16:11 +0000)]
Add URL:

* Allow statistics last vacuum/analyze execution times to be displayed
without requiring stats_row_level to be enabled

>
> http://archives.postgresql.org/pgsql-docs/2007-04/msg00028.php
>

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月24日 16:05:45 +0000 (16:05 +0000)]
Add to TODO:

> * Improve reporting of UNION type mismatches
>
> http://archives.postgresql.org/pgsql-hackers/2007-04/msg00944.php
> http://archives.postgresql.org/pgsql-hackers/2008-03/msg00597.php

17 years agoUpdate wording:
commit | commitdiff | tree
Bruce Momjian [2008年3月24日 14:17:06 +0000 (14:17 +0000)]
Update wording:

< o Allow pre/data/post files when dumping a single object, for
< performance reasons
> o Allow pre/data/post files when schema and data are dumped
> separately, for performance reasons

17 years agoUpdate text:
commit | commitdiff | tree
Bruce Momjian [2008年3月23日 12:36:59 +0000 (12:36 +0000)]
Update text:

< o Support pgxs
> o Support pgxs when using MSVC

17 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [2008年3月23日 01:30:46 +0000 (01:30 +0000)]
Add:

> http://archives.postgresql.org/pgsql-patches/2008-02/msg00176.php

17 years agoRe-add:
commit | commitdiff | tree
Bruce Momjian [2008年3月23日 01:26:53 +0000 (01:26 +0000)]
Re-add:

>
> * Avoid tuple some tuple copying in sort routines
>
> http://archives.postgresql.org/pgsql-hackers/2008-02/msg01206.php

17 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [2008年3月23日 01:23:10 +0000 (01:23 +0000)]
Add:

>
> * Sort large UPDATE/DELETEs so it is done in heap order
>
> http://archives.postgresql.org/pgsql-hackers/2008-01/msg01119.php

17 years agoAdd URL for:
commit | commitdiff | tree
Bruce Momjian [2008年3月23日 01:13:38 +0000 (01:13 +0000)]
Add URL for:

* Do async I/O for faster random read-ahead of data

Async I/O allows multiple I/O requests to be sent to the disk with
results coming back asynchronously.

> http://archives.postgresql.org/pgsql-patches/2008-01/msg00170.php

17 years agoDone:
commit | commitdiff | tree
Bruce Momjian [2008年3月23日 00:56:54 +0000 (00:56 +0000)]
Done:

<
< * Avoid tuple some tuple copying in sort routines
<
< http://archives.postgresql.org/pgsql-hackers/2008-02/msg01206.php

17 years agoAvoid a useless tuple copy within nodeMaterial. Neil Conway
commit | commitdiff | tree
Tom Lane [2008年3月23日 00:54:04 +0000 (00:54 +0000)]
Avoid a useless tuple copy within nodeMaterial. Neil Conway

17 years agoAdd to pg_dump TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月23日 00:32:33 +0000 (00:32 +0000)]
Add to pg_dump TODO:

> o Allow pre/data/post files when dumping a single object, for
> performance reasons
>
> http://archives.postgresql.org/pgsql-hackers/2008-02/msg00205.php
>

17 years agoCreate a function quote_nullable(), which works the same as quote_literal()
commit | commitdiff | tree
Tom Lane [2008年3月23日 00:24:20 +0000 (00:24 +0000)]
Create a function quote_nullable(), which works the same as quote_literal()
except that it returns the string 'NULL', rather than a SQL null, when called
with a null argument. This is often a much more useful behavior for
constructing dynamic queries. Add more discussion to the documentation
about how to use these functions.

Brendan Jurd

17 years agoAdd to Win3 TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月23日 00:14:41 +0000 (00:14 +0000)]
Add to Win3 TODO:

>
> o Fix MSVC NLS support, like for to_char()
>
> http://archives.postgresql.org/pgsql-hackers/2008-02/msg00485.php
> http://archives.postgresql.org/pgsql-patches/2008-02/msg00038.php

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月23日 00:08:47 +0000 (00:08 +0000)]
Add to TODO:

>
> * Improve WAL concurrency by increasing lock granularity
>
> http://archives.postgresql.org/pgsql-hackers/2008-02/msg00556.php
>

17 years agoAdd to Win32 TODO
commit | commitdiff | tree
Bruce Momjian [2008年3月22日 23:49:22 +0000 (23:49 +0000)]
Add to Win32 TODO

>
> o Support pgxs

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月22日 23:47:03 +0000 (23:47 +0000)]
Add to TODO:

>
> * Avoid tuple some tuple copying in sort routines
>
> http://archives.postgresql.org/pgsql-hackers/2008-02/msg01206.php

17 years agoAdd URL for TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月22日 22:52:26 +0000 (22:52 +0000)]
Add URL for TODO:

o Add checks to prevent a CREATE RULE views on inherited tables

> http://archives.postgresql.org/pgsql-general/2008-03/msg00077.php

17 years agoRefactor to_char/to_date formatting code; primarily, replace DCH_processor
commit | commitdiff | tree
Tom Lane [2008年3月22日 22:32:19 +0000 (22:32 +0000)]
Refactor to_char/to_date formatting code; primarily, replace DCH_processor
with two new functions DCH_to_char and DCH_from_char that have less confusing
APIs. Brendan Jurd

17 years agoAdd to TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月22日 22:06:12 +0000 (22:06 +0000)]
Add to TODO:

>
> o Add checks to prevent a CREATE RULE views on inherited tables
>
> http://archives.postgresql.org/pgsql-general/2008-02/msg01420.php

17 years agoAdd server side lo_import(filename, oid) function.
commit | commitdiff | tree
Tatsuo Ishii [2008年3月22日 01:55:14 +0000 (01:55 +0000)]
Add server side lo_import(filename, oid) function.

17 years agoAdd URL for:
commit | commitdiff | tree
Bruce Momjian [2008年3月22日 01:47:38 +0000 (01:47 +0000)]
Add URL for:

* Simplify ability to create partitioned tables

> http://archives.postgresql.org/pgsql-hackers/2008-01/msg00387.php

17 years agoAdd URL for:
commit | commitdiff | tree
Bruce Momjian [2008年3月22日 01:46:30 +0000 (01:46 +0000)]
Add URL for:

* Simplify ability to create partitioned tables

> http://archives.postgresql.org/pgsql-hackers/2008-01/msg00248.php

17 years agoAdd TODO:
commit | commitdiff | tree
Bruce Momjian [2008年3月22日 01:44:42 +0000 (01:44 +0000)]
Add TODO:

>
> * Improve performance of shared invalidation queue for multiple CPUs
>
> http://archives.postgresql.org/pgsql-performance/2008-01/msg00023.php

17 years agoAdd URLs for:
commit | commitdiff | tree
Bruce Momjian [2008年3月22日 01:30:21 +0000 (01:30 +0000)]
Add URLs for:

* Simplify ability to create partitioned tables

This would allow creation of partitioned tables without requiring
creation of triggers or rules for INSERT/UPDATE/DELETE, and constraints
for rapid partition selection. Options could include range and hash
partition selection.

> http://archives.postgresql.org/pgsql-hackers/2008-01/msg00028.php
> http://archives.postgresql.org/pgsql-hackers/2008-01/msg00413.php

17 years agoRemove TypeName struct's timezone flag, which has been write-only storage
commit | commitdiff | tree
Tom Lane [2008年3月21日 22:41:48 +0000 (22:41 +0000)]
Remove TypeName struct's timezone flag, which has been write-only storage
for a very long time --- in current usage it's entirely redundant with the
name field.

17 years agoGive an explicit error for serial[], rather than silently ignoring
commit | commitdiff | tree
Tom Lane [2008年3月21日 22:10:56 +0000 (22:10 +0000)]
Give an explicit error for serial[], rather than silently ignoring
the array decoration as the code had been doing.

17 years agoReport the current queries of all backends involved in a deadlock
commit | commitdiff | tree
Tom Lane [2008年3月21日 21:08:31 +0000 (21:08 +0000)]
Report the current queries of all backends involved in a deadlock
(if they'd be visible to the current user in pg_stat_activity).

This might look like it's subject to race conditions, but it's actually
pretty safe because at the time DeadLockReport() is constructing the
report, we haven't yet aborted our transaction and so we can expect that
everyone else involved in the deadlock is still blocked on some lock.
(There are corner cases where that might not be true, such as a statement
timeout triggering in another backend before we finish reporting; but at
worst we'd report a misleading activity string, so it seems acceptable
considering the usefulness of reporting the queries.)

Original patch by Itagaki Takahiro, heavily modified by me.

17 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [2008年3月21日 20:00:53 +0000 (20:00 +0000)]
Add:

>
> * Convert single quotes to apostrophes in the PDF documentation
>
> http://archives.postgresql.org/pgsql-docs/2007-12/msg00059.php
>

17 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [2008年3月21日 19:58:11 +0000 (19:58 +0000)]
Add:

>
> * Fix inconsistent precedence of =, >, and < compared to <>, >=, and <=
>
> http://archives.postgresql.org/pgsql-bugs/2007-12/msg00145.php

17 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [2008年3月21日 19:34:33 +0000 (19:34 +0000)]
Add:

>
> o Prevent SSL from sending network packets to avoid interference
> with Win32 signal emulation
>
> http://archives.postgresql.org/pgsql-hackers/2007-12/msg00455.php

17 years agoCorrected version number.
commit | commitdiff | tree
Michael Meskes [2008年3月21日 16:10:23 +0000 (16:10 +0000)]
Corrected version number.

17 years agoDocument that soft-mounting NFS is not recommended.
commit | commitdiff | tree
Bruce Momjian [2008年3月21日 14:23:37 +0000 (14:23 +0000)]
Document that soft-mounting NFS is not recommended.

17 years agoMore README src cleanups.
commit | commitdiff | tree
Bruce Momjian [2008年3月21日 13:23:29 +0000 (13:23 +0000)]
More README src cleanups.

17 years agoAdjust pgstatindex() to give correct answers for indexes larger than
commit | commitdiff | tree
Tom Lane [2008年3月21日 03:23:30 +0000 (03:23 +0000)]
Adjust pgstatindex() to give correct answers for indexes larger than
2^31 blocks. Also fix pg_relpages() for the same case.
Tatsuhito Kasahara

17 years agoGenerate dummy probes.h for MSVC builds.
commit | commitdiff | tree
Andrew Dunstan [2008年3月21日 02:50:02 +0000 (02:50 +0000)]
Generate dummy probes.h for MSVC builds.

17 years agoGet rid of a bunch of #ifdef HAVE_INT64_TIMESTAMP conditionals by inventing
commit | commitdiff | tree
Tom Lane [2008年3月21日 01:31:43 +0000 (01:31 +0000)]
Get rid of a bunch of #ifdef HAVE_INT64_TIMESTAMP conditionals by inventing
a new typedef TimeOffset to represent an intermediate time value. It's
either int64 or double as appropriate, and in most usages will be measured
in microseconds or seconds the same as Timestamp. We don't call it
Timestamp, though, since the value doesn't necessarily represent an absolute
time instant.

Warren Turkal

17 years agoArrange for an explicit cast applied to an ARRAY[] constructor to be applied
commit | commitdiff | tree
Tom Lane [2008年3月20日 21:42:48 +0000 (21:42 +0000)]
Arrange for an explicit cast applied to an ARRAY[] constructor to be applied
directly to all the member expressions, instead of the previous implementation
where the ARRAY[] constructor would infer a common element type and then we'd
coerce the finished array after the fact. This has a number of benefits,
one being that we can allow an empty ARRAY[] construct so long as its
element type is specified by such a cast.

Brendan Jurd, minor fixes by me.

17 years agoAdd a couple of missing FreeQueryDesc calls. Noticed while testing a
commit | commitdiff | tree
Alvaro Herrera [2008年3月20日 20:05:56 +0000 (20:05 +0000)]
Add a couple of missing FreeQueryDesc calls. Noticed while testing a
framework to keep track of snapshots in use.

17 years agoMake source code READMEs more consistent. Add CVS tags to all README files.
commit | commitdiff | tree
Bruce Momjian [2008年3月20日 17:55:15 +0000 (17:55 +0000)]
Make source code READMEs more consistent. Add CVS tags to all README files.

17 years agoDept of second thoughts: --no-tablespaces had better also prevent
commit | commitdiff | tree
Tom Lane [2008年3月20日 17:42:51 +0000 (17:42 +0000)]
Dept of second thoughts: --no-tablespaces had better also prevent
pg_dumpall from attaching TABLESPACE options to CREATE DATABASE commands.

17 years agoSupport a --no-tablespaces option in pg_dump/pg_dumpall/pg_restore, so that
commit | commitdiff | tree
Tom Lane [2008年3月20日 17:36:58 +0000 (17:36 +0000)]
Support a --no-tablespaces option in pg_dump/pg_dumpall/pg_restore, so that
dumps can be loaded into databases without the same tablespaces that the
source had. The option acts by suppressing all "SET default_tablespace"
commands, and also CREATE TABLESPACE commands in pg_dumpall's case.

Gavin Roy, with documentation and minor fixes by me.

17 years agoAdded ECPGget_PGconn() function to ecpglib, courtesy of Mike Aubury.
commit | commitdiff | tree
Michael Meskes [2008年3月20日 16:29:45 +0000 (16:29 +0000)]
Added ECPGget_PGconn() function to ecpglib, courtesy of Mike Aubury.
Removed one include file from connect-test1.

17 years agoChanged statement escaping to not escape continuation line markers.
commit | commitdiff | tree
Michael Meskes [2008年3月20日 15:56:59 +0000 (15:56 +0000)]
Changed statement escaping to not escape continuation line markers.

17 years agoAdd the missing cyrillic "Yo" characters ('e' and 'E' with two dots) to the
commit | commitdiff | tree
Heikki Linnakangas [2008年3月20日 10:30:04 +0000 (10:30 +0000)]
Add the missing cyrillic "Yo" characters ('e' and 'E' with two dots) to the
ISO_8859-5 <-> MULE_INTERNAL conversion tables.

This was discovered when trying to convert a string containing those characters
from ISO_8859-5 to Windows-1251, because we use MULE_INTERNAL/KOI8R as an
intermediate encoding between those two.

While the missing "Yo" was just an omission in the conversion tables, there are
a few other characters like the "Numero" sign ("No" as a single character) that
exists in all the other cyrillic encodings (win1251, ISO_8859-5 and cp866), but
not in KOI8R. Added comments about that.

Patch by Sergey Burladyan. Back-patch to 7.4.

17 years agoRemove another useless snapshot creation.
commit | commitdiff | tree
Alvaro Herrera [2008年3月19日 21:14:20 +0000 (21:14 +0000)]
Remove another useless snapshot creation.

17 years agoSupport ALTER TYPE RENAME. Petr Jelinek
commit | commitdiff | tree
Tom Lane [2008年3月19日 18:38:30 +0000 (18:38 +0000)]
Support ALTER TYPE RENAME. Petr Jelinek

17 years agoWe no longer need a snapshot set after opening the finishing transaction: this
commit | commitdiff | tree
Alvaro Herrera [2008年3月19日 14:18:21 +0000 (14:18 +0000)]
We no longer need a snapshot set after opening the finishing transaction: this
is redundant because autovacuum now always analyzes a single table per
transaction.

17 years agoAdd -M (query mode) option per ITAGAKI Takahiro
commit | commitdiff | tree
Tatsuo Ishii [2008年3月19日 03:33:21 +0000 (03:33 +0000)]
Add -M (query mode) option per ITAGAKI Takahiro

17 years agoFix regexp substring matching (substring(string from pattern)) for the corner
commit | commitdiff | tree
Tom Lane [2008年3月19日 02:40:37 +0000 (02:40 +0000)]
Fix regexp substring matching (substring(string from pattern)) for the corner
case where there is a match to the pattern overall but the user has specified
a parenthesized subexpression and that subexpression hasn't got a match.
An example is substring('foo' from 'foo(bar)?'). This should return NULL,
since (bar) isn't matched, but it was mistakenly returning the whole-pattern
match instead (ie, 'foo'). Per bug #4044 from Rui Martins.

This has been broken since the beginning; patch in all supported versions.
The old behavior was sufficiently inconsistent that it's impossible to believe
anyone is depending on it.

next
This is the main PostgreSQL git repository.
RSS Atom

AltStyle によって変換されたページ (->オリジナル) /