[COMMITTERS] pgsql: Make 'on' uppercase in a sql example.

2011-01-26 Thread Itagaki Takahiro
Make 'on' uppercase in a sql example. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=69039ea8b5569caf09b211f46fa9064468fee3b3 Modified Files -- doc/src/sgml/ref/alter_table.sgml |2 +- 1 files changed, 1 insertions(+), 1 delet

[COMMITTERS] pgsql: Add a link from client_encoding parameter to the list of charact

2011-01-31 Thread Itagaki Takahiro
Add a link from client_encoding parameter to the list of character sets in documentation. Thom Brown Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=03282bfa8973f3a77ca3e7c14847a5a11d07d6a2 Modified Files -- doc/src/sgml/config.s

[COMMITTERS] pgsql: Fix wrong error reports in 'number of array dimensions exceeds t

2011-01-31 Thread Itagaki Takahiro
Fix wrong error reports in 'number of array dimensions exceeds the maximum allowed' messages, that have reported one-less dimensions. Alexey Klyukin Branch -- REL8_3_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=9f37a76a1c137df627800272dd73b8ee4fff0c

[COMMITTERS] pgsql: Fix wrong error reports in 'number of array dimensions exceeds t

2011-01-31 Thread Itagaki Takahiro
Fix wrong error reports in 'number of array dimensions exceeds the maximum allowed' messages, that have reported one-less dimensions. Alexey Klyukin Branch -- REL8_4_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=2da967380facb5cd0476c2692fa72588980a8a

[COMMITTERS] pgsql: Fix wrong error reports in 'number of array dimensions exceeds t

2011-01-31 Thread Itagaki Takahiro
Fix wrong error reports in 'number of array dimensions exceeds the maximum allowed' messages, that have reported one-less dimensions. Alexey Klyukin Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=0c707aa4583a5584f4c3f4ad1697bb206ed0d65a Mod

[COMMITTERS] pgsql: Fix wrong error reports in 'number of array dimensions exceeds t

2011-01-31 Thread Itagaki Takahiro
Fix wrong error reports in 'number of array dimensions exceeds the maximum allowed' messages, that have reported one-less dimensions. Alexey Klyukin Branch -- REL8_2_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=13a9a7b55b4ced1ac017a3ca5a10f600d242a2

[COMMITTERS] pgsql: Fix wrong error reports in 'number of array dimensions exceeds t

2011-01-31 Thread Itagaki Takahiro
Fix wrong error reports in 'number of array dimensions exceeds the maximum allowed' messages, that have reported one-less dimensions. Alexey Klyukin Branch -- REL9_0_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=9a012852897fec73ed1459486d6e8426c674d9

[COMMITTERS] pgsql: Fix error messages for FreeFile in COPY command.

2011-02-06 Thread Itagaki Takahiro
Fix error messages for FreeFile in COPY command. They are extracted from COPY API patch. suggested by Noah Misch Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=fb7355e0cedfadd437c30c73cfb71af7ff8933b1 Modified Files -- src/backe

[COMMITTERS] pgsql: Fix a comment for MergeAttributes.

2011-02-06 Thread Itagaki Takahiro
Fix a comment for MergeAttributes. We forgot to adjust it when we changed relistemp to relpersistence. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=c18f51da17d8cf01d62218e0404e18ba246bde54 Modified Files -- src/backend/commands

[COMMITTERS] pgsql: Fix typo in the documentation.

2011-02-09 Thread Itagaki Takahiro
Fix typo in the documentation. by Kevin Grittner Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/5478f991c9f73066d27d75b31876f9977af61db5 Modified Files -- doc/src/sgml/mvcc.sgml |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- Sent via p

[COMMITTERS] pgsql: Export the external file reader used in COPY FROM as APIs.

2011-02-15 Thread Itagaki Takahiro
Export the external file reader used in COPY FROM as APIs. They are expected to be used by extension modules like file_fdw. There are no user-visible changes. Itagaki Takahiro Reviewed and tested by Kevin Grittner and Noah Misch. Branch -- master Details --- http://git.postgresql.org/pg

[COMMITTERS] pgsql: Add transaction-level advisory locks.

2011-02-17 Thread Itagaki Takahiro
Add transaction-level advisory locks. They share the same locking namespace with the existing session-level advisory locks, but they are automatically released at the end of the current transaction and cannot be released explicitly via unlock functions. Marko Tiikkaja, reviewed by me. Branch ---

[COMMITTERS] pgsql: Fix an uninitialized field in DR_copy.

2011-02-17 Thread Itagaki Takahiro
Fix an uninitialized field in DR_copy. Shigeru HANADA Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/5c63982af2a5d2da90259e878efb43f16ee13ce3 Modified Files -- src/backend/commands/copy.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) -- S

[COMMITTERS] pgsql: Add ENCODING option to COPY TO/FROM and file_fdw.

2011-02-20 Thread Itagaki Takahiro
Add ENCODING option to COPY TO/FROM and file_fdw. File encodings can be specified separately from client encoding. If not specified, client encoding is used for backward compatibility. Cases when the encoding doesn't match client encoding are slower than matched cases because we don't have convers

[COMMITTERS] pgsql: Fix pg_server_to_client, that was broken in the previous commit.

2011-02-20 Thread Itagaki Takahiro
Fix pg_server_to_client, that was broken in the previous commit. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/ca9cf85d54ec08f37edb37341ad8ee1f20211458 Modified Files -- src/backend/utils/mb/mbutils.c |2 +- 1 files changed, 1 insertions(+), 1 deleti

Re: [COMMITTERS] pgsql: Add ENCODING option to COPY TO/FROM and file_fdw.

2011-02-20 Thread Itagaki Takahiro
On Mon, Feb 21, 2011 at 15:12, Tom Lane wrote: > Itagaki Takahiro writes: >> Add ENCODING option to COPY TO/FROM and file_fdw. >> File encodings can be specified separately from client encoding. >> If not specified, client encoding is used for backward compatibility. >

[COMMITTERS] pgsql: Make the second words lowercase in psql's \d titles for unlogged

2011-02-22 Thread Itagaki Takahiro
Make the second words lowercase in psql's \d titles for unlogged tables. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/5a922f13eff66b3e437e823419d48d509d59a6be Modified Files -- src/bin/psql/describe.c |4 ++-- 1 files changed, 2 insertions(+), 2 del

[COMMITTERS] pgsql: Add tab-completion for CREATE UNLOGGED TABLE in psql,

2011-02-23 Thread Itagaki Takahiro
Add tab-completion for CREATE UNLOGGED TABLE in psql, and fix unexpected completion for DROP TEMP and UNIQUE. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/4191e16cbeafb9184dff37c3cbfe94b11a29d5f4 Modified Files -- src/bin/psql/tab-complete.c | 86 +++

[COMMITTERS] pgsql: More psql tab-completion for new commands.

2011-02-24 Thread Itagaki Takahiro
More psql tab-completion for new commands. - ALTER FOREIGN DATA WRAPPER with HANDLER - ALTER TABLE VALIDATE CONSTRAINT - ALTER TYPE ADD VALUE - COPY with ENCODING and FORCE NOT NULL - CREATE FOREIGN DATA WRAPPER with HANDLER - CREATE TRIGGER ... INSTEAD OF Branch -- master Details --- ht

[COMMITTERS] pgsql: synchronous_standby_names is a string parameter.

2011-03-09 Thread Itagaki Takahiro
synchronous_standby_names is a string parameter. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/1144726d070746a857a13af271e2864961a5268f Modified Files -- doc/src/sgml/config.sgml |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- Sent via

[COMMITTERS] pgsql: Remove 's' from recovery_target_timeline's' from the release not

2011-03-09 Thread Itagaki Takahiro
Remove 's' from recovery_target_timeline's' from the release note. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/48ff3913d6ce42cd090d17ea6863be4698007afe Modified Files -- doc/src/sgml/release-9.1.sgml |2 +- 1 files changed, 1 insertions(+), 1 delet

[COMMITTERS] pgsql: Cleanup copyright years and file names in the header comments of

2011-03-09 Thread Itagaki Takahiro
Cleanup copyright years and file names in the header comments of some files. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/2d8de0a50b54cc0ed430ffa96dc8776dfe95d5ff Modified Files -- contrib/auth_delay/auth_delay.c|2 +- src/backend/replicatio

[COMMITTERS] pgsql: Add datatype directory to SUBDIRS.

2011-09-10 Thread Itagaki Takahiro
Add datatype directory to SUBDIRS. New header datatype/timestamp.h should be installed for server-side dev. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/96a8aed4cb66b9a23e5b566ad549cd0c5eac5a74 Modified Files -- src/include/Makefile |2 +- 1 files c

[COMMITTERS] pgsql: Add DISCARD to the command_no_begin list for AUTOCOMMIT=off.

2010-09-27 Thread Itagaki Takahiro
Add DISCARD to the command_no_begin list for AUTOCOMMIT=off. Backpatch to 8.3. Reported by Sergey Burladyan. Branch -- REL9_0_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=60da196636239a9906a22de1bc1d95133ea9904a Modified Files -- src/bi

[COMMITTERS] pgsql: Add DISCARD to the command_no_begin list for AUTOCOMMIT=off.

2010-09-27 Thread Itagaki Takahiro
Add DISCARD to the command_no_begin list for AUTOCOMMIT=off. Backpatch to 8.3. Reported by Sergey Burladyan. Branch -- REL8_4_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=b66c4fb322b21a57c0b05cd3bd89c49def654eae Modified Files -- src/bi

[COMMITTERS] pgsql: Add DISCARD to the command_no_begin list for AUTOCOMMIT=off.

2010-09-27 Thread Itagaki Takahiro
Add DISCARD to the command_no_begin list for AUTOCOMMIT=off. Backpatch to 8.3. Reported by Sergey Burladyan. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=d08c698d9d47f9d004fd0bb6212ca80259e2fe9c Modified Files -- src/bin/psql/

[COMMITTERS] pgsql: Add DISCARD to the command_no_begin list for AUTOCOMMIT=off.

2010-09-27 Thread Itagaki Takahiro
Add DISCARD to the command_no_begin list for AUTOCOMMIT=off. Backpatch to 8.3. Reported by Sergey Burladyan. Branch -- REL8_3_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=b4f4d022b07ae162a29f36301a17e12da8011816 Modified Files -- src/bi

Re: [COMMITTERS] pgsql: Add DISCARD to the command_no_begin list for AUTOCOMMIT=off.

2010-09-27 Thread Itagaki Takahiro
On Tue, Sep 28, 2010 at 3:36 PM, Tom Lane wrote: > Itagaki Takahiro writes: >> Add DISCARD to the command_no_begin list for AUTOCOMMIT=off. > > This patch appears incorrect to me.  Only the DISCARD ALL variant is > prohibited inside BEGIN, so why is it making all v

[COMMITTERS] pgsql: Only DISCARD ALL should be in the command_no_begin list.

2010-09-27 Thread Itagaki Takahiro
Only DISCARD ALL should be in the command_no_begin list. We allowes DISCARD PLANS and TEMP in a transaction. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=62b6aaa40b2abb26edf18d1cd00dffcac090f67a Modified Files -- src/bin/psql/c

[COMMITTERS] pgsql: Only DISCARD ALL should be in the command_no_begin list.

2010-09-27 Thread Itagaki Takahiro
Only DISCARD ALL should be in the command_no_begin list. We allowes DISCARD PLANS and TEMP in a transaction. Branch -- REL9_0_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=279ab82791ebcb09442a599a74c641c5c5255dbf Modified Files -- src/bin

[COMMITTERS] pgsql: Only DISCARD ALL should be in the command_no_begin list.

2010-09-27 Thread Itagaki Takahiro
Only DISCARD ALL should be in the command_no_begin list. We allowes DISCARD PLANS and TEMP in a transaction. Branch -- REL8_4_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=2dc2ea81f67b96473cefe8fc7d515bda37255660 Modified Files -- src/bin

[COMMITTERS] pgsql: Only DISCARD ALL should be in the command_no_begin list.

2010-09-27 Thread Itagaki Takahiro
Only DISCARD ALL should be in the command_no_begin list. We allowes DISCARD PLANS and TEMP in a transaction. Branch -- REL8_3_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=334ca4fef875097f08b64016b61dad9d97428ae9 Modified Files -- src/bin

[COMMITTERS] pgsql: Accept 'public' as a pseudo-role name in has_table_privilege() a

2010-10-12 Thread Itagaki Takahiro
Accept 'public' as a pseudo-role name in has_table_privilege() and friends to see if a particular privilege has been granted to PUBLIC. The issue was reported by Jim Nasby. Patch by Alvaro Herrera, and reviewed by KaiGai Kohei. Branch -- master Details --- http://git.postgresql.org/gitwe

[COMMITTERS] pgsql: Add .gitignore for contrib/uuid-ossp.

2010-10-25 Thread Itagaki Takahiro
Add .gitignore for contrib/uuid-ossp. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=07ca728f699694781ce62eae9e2fa61cd4ffa542 Modified Files -- contrib/uuid-ossp/.gitignore |1 + 1 files changed, 1 insertions(+), 0 deletions(-

[COMMITTERS] pgsql: Fix typos "are are".

2010-10-26 Thread Itagaki Takahiro
Fix typos "are are". Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=bf76ad07fe59affc64f1554d4ff20ddf4d5e8e59 Modified Files -- src/include/nodes/execnodes.h |2 +- src/include/nodes/plannodes.h |2 +- 2 files changed, 2 ins

[COMMITTERS] pgsql: Don't use __declspec (dllimport) for PGDLLEXPORT to reduce warni

2010-11-09 Thread Itagaki Takahiro
Don't use __declspec (dllimport) for PGDLLEXPORT to reduce warnings by gcc version 4 on mingw and cygwin. We don't use dllexport here because dllexport and dllwrap don't work well together. Branch -- REL9_0_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;

[COMMITTERS] pgsql: Don't use __declspec (dllimport) for PGDLLEXPORT to reduce warni

2010-11-09 Thread Itagaki Takahiro
Don't use __declspec (dllimport) for PGDLLEXPORT to reduce warnings by gcc version 4 on mingw and cygwin. We don't use dllexport here because dllexport and dllwrap don't work well together. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=844ed

[COMMITTERS] pgsql: Don't raise "identifier will be truncated" messages in dblink

2010-11-25 Thread Itagaki Takahiro
Don't raise "identifier will be truncated" messages in dblink except creating new connections. Branch -- REL8_4_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=ec66f658999c6d19c82f437cc89d1bb0cfda2d80 Modified Files -- contrib/dblink/dblink

[COMMITTERS] pgsql: Don't raise "identifier will be truncated" messages in dblink

2010-11-25 Thread Itagaki Takahiro
Don't raise "identifier will be truncated" messages in dblink except creating new connections. Branch -- REL8_2_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=eaf0766d74ebf5975fc07344abb2bea599329d7e Modified Files -- contrib/dblink/dblink

[COMMITTERS] pgsql: Don't raise "identifier will be truncated" messages in dblink

2010-11-25 Thread Itagaki Takahiro
Don't raise "identifier will be truncated" messages in dblink except creating new connections. Branch -- REL8_3_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=0a8ba868a8d05f158d0f3d151a9d68f26e9e0329 Modified Files -- contrib/dblink/dblink

[COMMITTERS] pgsql: Don't raise "identifier will be truncated" messages in dblink

2010-11-25 Thread Itagaki Takahiro
Don't raise "identifier will be truncated" messages in dblink except creating new connections. Branch -- REL9_0_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=317a568c88ee92bb50238f9fe9508803bc81501c Modified Files -- contrib/dblink/dblink

[COMMITTERS] pgsql: Don't raise "identifier will be truncated" messages in dblink

2010-11-25 Thread Itagaki Takahiro
Don't raise "identifier will be truncated" messages in dblink except creating new connections. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=d3c126544342728ab4b5c167b4f4b01a39270db5 Modified Files -- contrib/dblink/dblink.c |

[COMMITTERS] pgsql: Don't raise "identifier will be truncated" messages in dblink

2010-11-26 Thread Itagaki Takahiro
Don't raise "identifier will be truncated" messages in dblink except creating new connections. Branch -- REL8_1_STABLE Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=268da2921907e7b5b1e9b0990957181a8dd7b410 Modified Files -- contrib/dblink/dblink

[COMMITTERS] pgsql: Remove unnecessary string null-termination in pg_convert.

2010-12-02 Thread Itagaki Takahiro
Remove unnecessary string null-termination in pg_convert. We can directly verify the unterminated input with pg_verify_mbstr_len. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=fd223c7407c7067ac3ec7e586f9e3d7b5afd2b2e Modified Files

[COMMITTERS] pgsql: Add pg_read_binary_file() and whole-file-at-once versions of pg_

2010-12-15 Thread Itagaki Takahiro
Add pg_read_binary_file() and whole-file-at-once versions of pg_read_file(). One of the usages of the binary version is to read files in a different encoding from the server encoding. Dimitri Fontaine and Itagaki Takahiro. Branch -- master Details --- http://git.postgresql.org/gitweb?p

[COMMITTERS] pgsql: Improve psql tab completion for CREATE/ALTER ROLE [NO]REPLICATIO

2011-01-04 Thread Itagaki Takahiro
Improve psql tab completion for CREATE/ALTER ROLE [NO]REPLICATION. Missing support for VALID UNTIL in CREATE ROLE is also added. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=14158f25cd164d65cf174dab9e22b3b4a22962a7 Modified Files

[COMMITTERS] pgsql: New system view pg_stat_replication displays activity of wal sen

2011-01-07 Thread Itagaki Takahiro
New system view pg_stat_replication displays activity of wal sender processes. Itagaki Takahiro and Simon Riggs. Branch -- master Details --- http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=a755ea33ae3d772977fa083a8614bb9d4cc36e5a Modified Files -- src

Re: [COMMITTERS] pgsql: Set the correct context (PGC_SIGHUP) for log_autovacuum, per

2007-09-11 Thread ITAGAKI Takahiro
"log_min_duration_autovacuum" ? We have log_min_duration_statement, that behaves in the same manner. Regards, --- ITAGAKI Takahiro NTT Open Source Software Center ---(end of broadcast)--- TIP 6: explain analyze is your friend

Re: [COMMITTERS] pginstaller - pginst: Fixed EUC_JP code misstake..

2007-10-03 Thread ITAGAKI Takahiro
inese_Taiwan.20950" _db_encoding client_encodings[] = { { "EUC_JP", "20932" }, { "EUC_CN", "51936" }, { "EUC_KR", "51949" }, { "EUC_TW", "51950" }, Regards, --- ITAGAKI Takahiro NTT Open Sour