I corrected "postgresql.conf", in order to improve the phenomenon.
A result is the same.
It was same phenomenon on Windows8 professional 64bit.
"name","current_setting"
"version","PostgreSQL 9.2.2, compiled by Visual C++ build 1600, 64-bit"
"bytea_output","hex"
"client_encoding","SJIS"
"lc_collate","C"
"lc_ctype","C"
"listen_addresses","*"
"log_destination","stderr"
"log_line_prefix","%t %h %a"
"log_rotation_size","1MB"
"log_statement","all"
"logging_collector","on"
"max_connections","100"
"max_stack_depth","2MB"
"port","5433"
"server_encoding","UTF8"
"shared_buffers","32MB"
"TimeZone","Asia/Tokyo"
"wal_buffers","1MB"
On Fri, 18 Jan 2013 07:35:43 -0800
bricklen <bricklen@gmail.com> wrote:
> On Fri, Jan 18, 2013 at 3:26 AM, Tsunezumi <tsunezumi@efficlabo.com> wrote:
> >
> > I installed ordinarily.
> > I did not correct postgresql.conf.
> >
> > Installation Directory
> > C:\PostgreSQL\9.2
> >
> > Data Directory
> > C:\PostgreSQL\9.2\data
> >
> > locale
> > C
>
> Please post the results of the following query:
>
> SELECT 'version'::text AS "name",
> version() AS "current_setting"
> UNION ALL
> SELECT name,
> current_setting(name)
> FROM pg_settings
> WHERE NOT source='default'AND NOT name IN
>
('config_file','data_directory','hba_file','ident_file','log_timezone','DateStyle','lc_messages','lc_monetary','lc_numeric','lc_time','timezone_abbreviations','default_text_search_config','application_name','transaction_deferrable','transaction_isolation','transaction_read_only');