[pgpool-general: 657] Re: Pgpool PHP PDO connection not closing after script execution

Aleksej Trofimov aleksej.trofimov at ruptela.lt
Thu Jun 21 20:28:42 JST 2012


On 21/06/12 13:58, Aleksej Trofimov wrote:
> On 21/06/12 05:13, Tatsuo Ishii wrote:
>>> On 20/06/12 17:08, Tatsuo Ishii wrote:
>>>>> On 20/06/12 09:23, Tatsuo Ishii wrote:
>>>>>>>>> Hello,
>>>>>>>>>         Several days ago I faced with a pgpool (3.1.3) + php
>>>>>>>>>         pdo(5.3.9-1.ius.el5) problem. My project has a lot of 
>>>>>>>>> connection per
>>>>>>>>>         second (about 40 in a second), so we are using pgpool 
>>>>>>>>> in load balancer
>>>>>>>>>         and master/slave mode. Not a long time ago we decided 
>>>>>>>>> to rewrite our
>>>>>>>>>         php code to support PDO, but after all test went good 
>>>>>>>>> we faced with a
>>>>>>>>>         problem, when pgpool reaches connection maximum in a 
>>>>>>>>> several seconds
>>>>>>>>>         with a 90% of idle connections. We have such a 
>>>>>>>>> configuration:
>>>>>>>>>
>>>>>>>>> num_init_children = 100
>>>>>>>>> max_pool = 2
>>>>>>>>> child_life_time = 300
>>>>>>>>> child_max_connections = 20
>>>>>>>>> connection_life_time = 20
>>>>>>>>> client_idle_limit = 20
>>>>>>>>>
>>>>>>>>> Without a PDO extension, everything works great, we have 40-45 
>>>>>>>>> pgpool
>>>>>>>>> processes running on a server at an average. After we enabling 
>>>>>>>>> PDO in
>>>>>>>>> our code, pgpool process starting to grow very fast until
>>>>>>>>> num_init_children and 90 of them are with idle status. The 
>>>>>>>>> problem
>>>>>>>>> does not exist without pgpool in a midle (if we connect to 
>>>>>>>>> database
>>>>>>>>> directly, we are using postgresql 9.1).
>>>>>>>>>
>>>>>>>>>      We also tried to increase num_init_children but no 
>>>>>>>>> effect, maximum is
>>>>>>>>>      reached in a several seconds..
>>>>>>>>>
>>>>>>>>> Our php script uses  such a logic:
>>>>>>>>> $this->_connection = new PDO();
>>>>>>>>>
>>>>>>>>> Using $this->_connection
>>>>>>>>>
>>>>>>>>> $this->_connection = NULL;
>>>>>>>>>
>>>>>>>>> And we are not using persistence mode..
>>>>>>>>>
>>>>>>>>> May be someone know the solution?
>>>>>>>> I think by setting NULL to $this->connection PDO does not 
>>>>>>>> disconnect
>>>>>>>> connection to pgpool immediately. That's the reason why 
>>>>>>>> connections to
>>>>>>>> pgpool are filled up. In the past I confirmed this by using 
>>>>>>>> strace to
>>>>>>>> see what PDO was doing. PDO did not send "close connection" 
>>>>>>>> packet to
>>>>>>>> pgpool immediately when the PDO script set NULL to connection
>>>>>>>> object. After creating new PDO object, eventually it sent the 
>>>>>>>> packet.
>>>>>>>>
>>>>>>>> I'm not sure this is a bug or feature of PDO though.
>>>>>>>>
>>>>>>> So, there is no solution for "workarounding" this "feature"?
>>>>>> If I were you, I would modify PDO to add new method "disconnect". It
>>>>>> should not be hard.
>>>>>>
>>>>>> In reality, you might want to modify your PDO code. I think the 
>>>>>> reason
>>>>>> why setting NULL to connection object does not release the 
>>>>>> connnection
>>>>>> immediately is, the connection is not removed by destructor until 
>>>>>> the
>>>>>> execution goes out of the scope of the connection object.
>>>>>>
>>>>>>> And why
>>>>>>> postgress itself does not complaint on such a behaviour of PDO and
>>>>>>> pgpool does?
>>>>>> Probably due to the difference of connection establishing speed.  To
>>>>>> confirm this you could insert sleep() after:
>>>>>>
>>>>>> $this->_connection = new PDO();
>>>>>>
>>>>>> and see if something changes when using pgpool.
>>>>>>
>>>>> Hello,
>>>>>       I have tried using several sleep values, 0.5 sec and 1 sec, 
>>>>> the higher
>>>>>       values are not possible in our system with average load... 
>>>>> No result
>>>>>       at all, the idle connections are dropped only after
>>>>>
>>>>> client_idle_limit time = 20 sec
>>>>>
>>>>> In such a condition there is no possibility to use pgpool with php 
>>>>> pdo
>>>>> at all...
>>>> Ok, the sleep is useless then. What about:
>>>>
>>>>> the connection is not removed by destructor until the
>>>>> execution goes out of the scope of the connection object
>>>> Can you modify your script?
>>>>
>>> According to
>>>
>>>> If I were you, I would modify PDO to add new method "disconnect". It
>>>> should not be hard.
>>>>
>>>> In reality, you might want to modify your PDO code. I think the reason
>>>> why setting NULL to connection object does not release the connnection
>>>> immediately is, the connection is not removed by destructor until the
>>>> execution goes out of the scope of the connection object.
>>> But PHP PDO has no disconnect method by default, this is from php
>>> manual:
>>>
>>> Upon successful connection to the database, an instance of the PDO
>>> class is returned to your script. The connection remains active for
>>> the lifetime of that PDO object. To close the connection, you need to
>>> destroy the object by ensuring that all remaining references to it are
>>> deleted--you do this by assigning NULL to the variable that holds the
>>> object. If you don't do this explicitly, PHP will automatically close
>>> the connection when your script ends.
>>> (http://us.php.net/manual/en/pdo.connections.php)
>>>
>>> So the $pdo = null must close connection, or connection must be
>>> dropped after the script ends.
>>> But as I understand from my situation, connection only is closed to
>>> postgres directly but not to pgpool.
>>>
>>> Or when you said
>>>
>>>> If I were you, I would modify PDO to add new method "disconnect". It
>>>> should not be hard.
>>> You kept in mind, modify php pdo source?
>> Ok, I did test myself and saw no evidence that many pgpool process in
>> idle state (actially all of them are in "wait for connection" state
>> right after the test).
>>
>> Here is the software versions I used:
>>
>> $ uname -a
>> Linux localhost.localdomain 2.6.35-21vl6 #1 SMP Sun Jan 1 18:40:00 
>> JST 2012 x86_64 x86_64 x86_64 GNU/Linux
>> $ php --version
>> PHP 5.3.14 (cli) (built: Jun 15 2012 05:34:54)
>> Copyright (c) 1997-2012 The PHP Group
>> Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies
>>
>> Here is the trivial test program I used. I ran the program from php 
>> command line.
>>
>> <?php
>>    function db() {
>>      $db = new PDO("pgsql:host=localhost;port=11002;dbname=test");
>>     return $db;
>>    }
>>
>>    $n = 100;
>>    for($i=0;$i<  $n;$i++)
>>    {
>>      $db = db();
>>      $stmt = $db->prepare("SELECT :num::int");
>>      $stmt->execute(array(':num' =>  $i));
>>      print_r($stmt->fetch());
>>      //sleep(1);
>>      $db = NULL;
>>      echo date(DATE_RFC822);
>>    }
>> ?>
>>
> Hello,
> we are using
> # uname -a
> Linux track.HTTP 2.6.18-274.7.1.el5.028stab095.1 #1 SMP Mon Oct 24 
> 20:49:24 MSD 2011 x86_64 x86_64 x86_64 GNU/Linux
> # php --version
> PHP 5.3.9 (cli) (built: Jan 11 2012 10:47:45)
> Copyright (c) 1997-2012 The PHP Group
> Zend Engine v2.3.0, Copyright (c) 1998-2012 Zend Technologies
>
> All our scripts have $PDO=null; at the end
>
> Unforunately, after a several seconds of attaching PDO to the pgpool, 
> we have situation like a lot of pool proccesses IDLE, and lot of pool 
> connected. I've attache 2 log files, psql  -c "show pool_pools;" > 
> log_pools and the other is pgpool ps aux log
>
> From the logs it is seen, that after the PDO enabling, pgpool is 
> starting to accumulate IDLE connections. New connections are 
> established with a frequency 30 connections/s
>
> What other debug information could I provide?
>
> -- 
> Best regards
>
> Aleksej Trofimov
>
>

Also I can attach pgpool log for one process where you can see, that 
IDLE state lasts until "expire" state. As you can see, script is 
executing from 14:08:46 due ot 14:09:17, than pgpool gets IDLE state and 
is killed after 20 sec timeout at 14:09:37.

-- 
Best regards

Aleksej Trofimov

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.sraoss.jp/pipermail/pgpool-general/attachments/20120621/63acd3ec/attachment-0001.html>
-------------- next part --------------
2012-06-21 14:08:46 DEBUG: pid 32636: I am 32636
2012-06-21 14:08:46 DEBUG: pid 32636: pool_initialize_private_backend_status: initialize backend status
2012-06-21 14:08:58 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:08:58 LOG:   pid 32636: connection received: host=localhost.localdomain port=52651
2012-06-21 14:08:58 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:08:58 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:08:58 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:08:58 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:08:58 DEBUG: pid 32636: new_connection: connecting 0 backend
2012-06-21 14:08:58 DEBUG: pid 32636: new_connection: connecting 1 backend
2012-06-21 14:08:58 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:08:58 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 8
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 8
2012-06-21 14:08:58 DEBUG: pid 32636: pool_do_auth: auth kind:0
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 0 length: 22
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 1 length: 22
2012-06-21 14:08:58 DEBUG: pid 32636: 0 th backend: name: application_name value: 
2012-06-21 14:08:58 DEBUG: pid 32636: 1 th backend: name: application_name value: 
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 0 length: 25
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 1 length: 25
2012-06-21 14:08:58 DEBUG: pid 32636: 0 th backend: name: client_encoding value: UTF8
2012-06-21 14:08:58 DEBUG: pid 32636: 1 th backend: name: client_encoding value: UTF8
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 0 length: 23
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 1 length: 23
2012-06-21 14:08:58 DEBUG: pid 32636: 0 th backend: name: DateStyle value: ISO, MDY
2012-06-21 14:08:58 DEBUG: pid 32636: 1 th backend: name: DateStyle value: ISO, MDY
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 0 length: 25
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 1 length: 25
2012-06-21 14:08:58 DEBUG: pid 32636: 0 th backend: name: integer_datetimes value: on
2012-06-21 14:08:58 DEBUG: pid 32636: 1 th backend: name: integer_datetimes value: on
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 0 length: 27
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 1 length: 27
2012-06-21 14:08:58 DEBUG: pid 32636: 0 th backend: name: IntervalStyle value: postgres
2012-06-21 14:08:58 DEBUG: pid 32636: 1 th backend: name: IntervalStyle value: postgres
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 0 length: 21
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 1 length: 21
2012-06-21 14:08:58 DEBUG: pid 32636: 0 th backend: name: is_superuser value: off
2012-06-21 14:08:58 DEBUG: pid 32636: 1 th backend: name: is_superuser value: off
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 0 length: 25
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 1 length: 25
2012-06-21 14:08:58 DEBUG: pid 32636: 0 th backend: name: server_encoding value: UTF8
2012-06-21 14:08:58 DEBUG: pid 32636: 1 th backend: name: server_encoding value: UTF8
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 0 length: 25
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 1 length: 25
2012-06-21 14:08:58 DEBUG: pid 32636: 0 th backend: name: server_version value: 9.1.1
2012-06-21 14:08:58 DEBUG: pid 32636: 1 th backend: name: server_version value: 9.1.1
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 0 length: 34
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 1 length: 34
2012-06-21 14:08:58 DEBUG: pid 32636: 0 th backend: name: session_authorization value: wwwdata
2012-06-21 14:08:58 DEBUG: pid 32636: 1 th backend: name: session_authorization value: wwwdata
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 0 length: 35
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 1 length: 35
2012-06-21 14:08:58 DEBUG: pid 32636: 0 th backend: name: standard_conforming_strings value: on
2012-06-21 14:08:58 DEBUG: pid 32636: 1 th backend: name: standard_conforming_strings value: on
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 0 length: 28
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length2: master slot: 1 length: 28
2012-06-21 14:08:58 DEBUG: pid 32636: 0 th backend: name: TimeZone value: Europe/Vilnius
2012-06-21 14:08:58 DEBUG: pid 32636: 1 th backend: name: TimeZone value: Europe/Vilnius
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 12
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 12
2012-06-21 14:08:58 DEBUG: pid 32636: pool_do_auth: cp->info[i]:0x2b120570a800 pid:13680
2012-06-21 14:08:58 DEBUG: pid 32636: pool_do_auth: cp->info[i]:0x2b120570a888 pid:12048
2012-06-21 14:08:58 DEBUG: pid 32636: pool_send_auth_ok: send pid 12048 to frontend
2012-06-21 14:08:58 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:08:58 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:08:58 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:08:58 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: statement2: SET NAMES 'UTF8';
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: send_to_where: 3 query: SET NAMES 'UTF8';
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:08:58 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:08:58 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend P(50)
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: Parse: statement name <pdo_stmt_00000001>
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:08:58 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:08:58 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:08:58 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:08:58 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:08:58 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:08:58 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:08:58 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:08:58 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:08:58 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: Parse: waiting for master completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: detect_error: kind: 1
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 1 NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 1
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:08:58 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend B(42)
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:08:58 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:08:58 DEBUG: pid 32636: system_catalog_walker: relname: *****
2012-06-21 14:08:58 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:08:58 DEBUG: pid 32636: unlogged_table_walker: relname: *****
2012-06-21 14:08:58 DEBUG: pid 32636: Bind: waiting for master completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 2 NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 2
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend D(44)
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:08:58 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:08:58 DEBUG: pid 32636: system_catalog_walker: relname: ****
2012-06-21 14:08:58 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:08:58 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:08:58 DEBUG: pid 32636: Describe: waiting for master completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend E(45)
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: Execute: portal name <>
2012-06-21 14:08:58 DEBUG: pid 32636: Execute: query: SELECT ***
2012-06-21 14:08:58 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:08:58 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:08:58 DEBUG: pid 32636: system_catalog_walker: relname: ********
2012-06-21 14:08:58 DEBUG: pid 32636: temp_table_walker: relname: *********
2012-06-21 14:08:58 DEBUG: pid 32636: unlogged_table_walker: relname: *******
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:08:58 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: statement2: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: send_to_where: 0 query: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:08:58 DEBUG: pid 32636: can_query_context_destroy: query context is still used.
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:08:58 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:08:58 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-3:00';
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-3:00';
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:08:58 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:08:58 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:08:58 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:08:58 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:08:58 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:08:58 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:08:58 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:08:58 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:58 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:59 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:08:59 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:08:59 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:59 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:59 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:08:59 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:08:59 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:08:59 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:08:59 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:08:59 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:08:59 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:08:59 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:08:59 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:08:59 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:08:59 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:08:59 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:08:59 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:08:59 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:08:59 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:08:59 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:08:59 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:59 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:08:59 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:08:59 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:08:59 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:08:59 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:08:59 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:08:59 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:08:59 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:08:59 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:08:59 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:08:59 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:59 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:59 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:08:59 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276939
2012-06-21 14:08:59 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:01 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:01 LOG:   pid 32636: connection received: host=localhost.localdomain port=52910
2012-06-21 14:09:01 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:01 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:01 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:01 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:01 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:01 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:01 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: statement2: SET NAMES 'UTF8';
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: send_to_where: 3 query: SET NAMES 'UTF8';
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend P(50)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: Parse: statement name <pdo_stmt_00000001>
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:01 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:01 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: Parse: waiting for master completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: 1
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 1 NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 1
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend B(42)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:01 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:01 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:01 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:01 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:01 DEBUG: pid 32636: Bind: waiting for master completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 2 NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 2
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend D(44)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:01 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:01 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:01 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:01 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:01 DEBUG: pid 32636: Describe: waiting for master completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend E(45)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: Execute: portal name <>
2012-06-21 14:09:01 DEBUG: pid 32636: Execute: query: SELECT ***
2012-06-21 14:09:01 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:01 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:01 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:01 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:01 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: statement2: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: send_to_where: 0 query: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:01 DEBUG: pid 32636: can_query_context_destroy: query context is still used.
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276941
2012-06-21 14:09:01 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:01 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:01 LOG:   pid 32636: connection received: host=localhost.localdomain port=52941
2012-06-21 14:09:01 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:01 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:01 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:01 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:01 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:01 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:01 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: statement2: SELECT ***
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:01 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:01 DEBUG: pid 32636: function_call_walker: function name: to_char
2012-06-21 14:09:01 DEBUG: pid 32636: function_call_walker: function name: timezone
2012-06-21 14:09:01 DEBUG: pid 32636: system_catalog_walker: relname: alarm
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: system_catalog_walker: relname: object
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: temp_table_walker: relname: alarm
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: temp_table_walker: relname: object
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: unlogged_table_walker: relname: alarm
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: unlogged_table_walker: relname: object
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: statement2: SELECT ***
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:01 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:01 DEBUG: pid 32636: system_catalog_walker: relname: webusers
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: system_catalog_walker: relname: client
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: system_catalog_walker: relname: mod_providers
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: temp_table_walker: relname: webusers
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: temp_table_walker: relname: client
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: temp_table_walker: relname: mod_providers
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: unlogged_table_walker: relname: webusers
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: unlogged_table_walker: relname: client
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: unlogged_table_walker: relname: mod_providers
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:01 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:01 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:01 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:01 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:01 DEBUG: pid 32636: statement2: SELECT ***
2012-06-21 14:09:01 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:01 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:01 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:01 DEBUG: pid 32636: system_catalog_walker: relname: mod_users
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: temp_table_walker: relname: mod_users
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: unlogged_table_walker: relname: mod_users
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:01 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:01 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:01 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:02 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:02 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:02 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:02 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:02 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:02 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276942
2012-06-21 14:09:02 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:02 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:02 LOG:   pid 32636: connection received: host=localhost.localdomain port=53031
2012-06-21 14:09:02 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:02 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:02 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:02 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:02 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:02 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:02 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: statement2: SET NAMES 'UTF8';
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: send_to_where: 3 query: SET NAMES 'UTF8';
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:02 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:02 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:02 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:02 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend P(50)
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: Parse: statement name <pdo_stmt_00000001>
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:02 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:02 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:02 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:02 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:02 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:02 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:02 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:02 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:02 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:02 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:02 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:02 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:02 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:02 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:02 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:02 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:02 DEBUG: pid 32636: Parse: waiting for master completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: detect_error: kind: 1
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 1 NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 1
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:02 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:02 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend B(42)
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:02 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:02 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:02 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:02 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:02 DEBUG: pid 32636: Bind: waiting for master completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 2 NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 2
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend D(44)
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:02 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:02 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:02 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:02 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:02 DEBUG: pid 32636: Describe: waiting for master completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend E(45)
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: Execute: portal name <>
2012-06-21 14:09:02 DEBUG: pid 32636: Execute: query: SELECT ***
2012-06-21 14:09:02 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:02 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:02 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:02 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:02 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:02 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:02 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: statement2: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: send_to_where: 0 query: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:02 DEBUG: pid 32636: can_query_context_destroy: query context is still used.
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:02 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:02 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:02 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:02 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:02 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:02 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:02 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:02 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:02 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:02 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:02 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:02 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:02 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276943
2012-06-21 14:09:03 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:03 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:03 LOG:   pid 32636: connection received: host=localhost.localdomain port=53083
2012-06-21 14:09:03 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:03 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:03 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:03 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:03 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:03 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:03 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276943
2012-06-21 14:09:03 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:03 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:03 LOG:   pid 32636: connection received: host=localhost.localdomain port=53092
2012-06-21 14:09:03 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:03 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:03 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:03 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:03 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:03 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:03 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: statement2: SET NAMES 'UTF8';
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 3 query: SET NAMES 'UTF8';
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend P(50)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: Parse: statement name <pdo_stmt_00000001>
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:03 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:03 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:03 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:03 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: Parse: waiting for master completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: 1
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 1 NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 1
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend B(42)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:03 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: Bind: waiting for master completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 2 NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 2
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend D(44)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:03 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: Describe: waiting for master completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend E(45)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: Execute: portal name <>
2012-06-21 14:09:03 DEBUG: pid 32636: Execute: query: SELECT ***
2012-06-21 14:09:03 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:03 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: statement2: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 0 query: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:03 DEBUG: pid 32636: can_query_context_destroy: query context is still used.
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-3:00';
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-3:00';
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276943
2012-06-21 14:09:03 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:03 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:03 LOG:   pid 32636: connection received: host=localhost.localdomain port=53128
2012-06-21 14:09:03 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:03 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:03 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:03 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:03 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:03 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:03 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: statement2: SET NAMES 'UTF8';
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 3 query: SET NAMES 'UTF8';
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend P(50)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: Parse: statement name <pdo_stmt_00000001>
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:03 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:03 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:03 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:03 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: Parse: waiting for master completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: 1
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 1 NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 1
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend B(42)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:03 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: Bind: waiting for master completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 2 NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 2
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend D(44)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:03 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: Describe: waiting for master completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend E(45)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: Execute: portal name <>
2012-06-21 14:09:03 DEBUG: pid 32636: Execute: query: SELECT ***
2012-06-21 14:09:03 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:03 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: statement2: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 0 query: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:03 DEBUG: pid 32636: can_query_context_destroy: query context is still used.
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:03 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-3:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-3:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:03 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:03 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:03 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:03 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:03 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:03 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:04 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:04 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:04 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:04 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276944
2012-06-21 14:09:04 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:04 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:04 LOG:   pid 32636: connection received: host=localhost.localdomain port=53227
2012-06-21 14:09:04 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:04 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:04 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:04 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:04 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:04 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:04 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: statement2: SET NAMES 'UTF8';
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: send_to_where: 3 query: SET NAMES 'UTF8';
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:04 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:04 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:04 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:04 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend P(50)
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: Parse: statement name <pdo_stmt_00000001>
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:04 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:04 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:04 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:04 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:04 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:04 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:04 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:04 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:04 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:04 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:04 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:04 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:04 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:04 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:04 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:04 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:04 DEBUG: pid 32636: Parse: waiting for master completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: detect_error: kind: 1
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 1 NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 1
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:04 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:04 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend B(42)
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:04 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:04 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:04 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:04 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:04 DEBUG: pid 32636: Bind: waiting for master completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 2 NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 2
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend D(44)
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:04 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:04 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:04 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:04 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:04 DEBUG: pid 32636: Describe: waiting for master completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend E(45)
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: Execute: portal name <>
2012-06-21 14:09:04 DEBUG: pid 32636: Execute: query: SELECT ***
2012-06-21 14:09:04 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:04 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:04 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:04 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:04 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:04 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:04 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: statement2: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: send_to_where: 0 query: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:04 DEBUG: pid 32636: can_query_context_destroy: query context is still used.
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:04 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:04 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:04 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-1:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-1:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-1:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-1:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:04 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:04 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:04 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:04 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:04 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:04 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:04 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:04 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:04 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:04 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:05 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:05 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:05 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:05 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276945
2012-06-21 14:09:05 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:05 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:05 LOG:   pid 32636: connection received: host=localhost.localdomain port=53326
2012-06-21 14:09:05 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:05 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:05 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:05 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:05 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:05 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:05 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: statement2: SET NAMES 'UTF8';
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: send_to_where: 3 query: SET NAMES 'UTF8';
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:05 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:05 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:05 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:05 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend P(50)
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: Parse: statement name <pdo_stmt_00000001>
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:05 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:05 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:05 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:05 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:05 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:05 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:05 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:05 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:05 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:05 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:05 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:05 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:05 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:05 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:05 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:05 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:05 DEBUG: pid 32636: Parse: waiting for master completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: detect_error: kind: 1
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 1 NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 1
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:05 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:05 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend B(42)
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:05 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:05 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:05 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:05 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:05 DEBUG: pid 32636: Bind: waiting for master completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 2 NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 2
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend D(44)
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:05 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:05 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:05 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:05 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:05 DEBUG: pid 32636: Describe: waiting for master completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend E(45)
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: Execute: portal name <>
2012-06-21 14:09:05 DEBUG: pid 32636: Execute: query: SELECT ***
2012-06-21 14:09:05 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:05 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:05 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:05 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:05 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:05 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:05 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: statement2: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: send_to_where: 0 query: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:05 DEBUG: pid 32636: can_query_context_destroy: query context is still used.
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:05 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:05 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-3:00';
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-3:00';
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:05 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:05 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:05 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:05 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:05 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:05 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:05 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:05 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:05 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:05 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:05 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276945
2012-06-21 14:09:05 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:05 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:05 LOG:   pid 32636: connection received: host=localhost.localdomain port=53399
2012-06-21 14:09:05 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:05 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:05 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:05 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:05 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:05 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:05 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:05 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-2:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: statement2: SELECT ***
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:14 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:14 DEBUG: pid 32636: function_call_walker: function name: to_char
2012-06-21 14:09:14 DEBUG: pid 32636: function_call_walker: function name: timezone
2012-06-21 14:09:14 DEBUG: pid 32636: system_catalog_walker: relname: alarm
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: system_catalog_walker: relname: object
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: temp_table_walker: relname: alarm
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: temp_table_walker: relname: object
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: unlogged_table_walker: relname: alarm
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: unlogged_table_walker: relname: object
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: statement2: SELECT ***
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:14 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:14 DEBUG: pid 32636: system_catalog_walker: relname: webusers
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: system_catalog_walker: relname: client
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: system_catalog_walker: relname: mod_providers
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: temp_table_walker: relname: webusers
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: temp_table_walker: relname: client
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: temp_table_walker: relname: mod_providers
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: unlogged_table_walker: relname: webusers
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: unlogged_table_walker: relname: client
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: unlogged_table_walker: relname: mod_providers
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: statement2: SELECT ***
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:14 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:14 DEBUG: pid 32636: system_catalog_walker: relname: mod_users
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: temp_table_walker: relname: mod_users
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: unlogged_table_walker: relname: mod_users
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276954
2012-06-21 14:09:14 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:14 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:14 LOG:   pid 32636: connection received: host=localhost.localdomain port=54193
2012-06-21 14:09:14 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:14 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:14 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:14 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:14 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:14 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:14 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: statement2: SET NAMES 'UTF8';
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: send_to_where: 3 query: SET NAMES 'UTF8';
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend P(50)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: Parse: statement name <pdo_stmt_00000001>
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:14 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:14 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:14 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: Parse: waiting for master completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: 1
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 1 NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 1
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend B(42)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:14 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:14 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:14 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:14 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:14 DEBUG: pid 32636: Bind: waiting for master completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 2 NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 2
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend D(44)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:14 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:14 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:14 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:14 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:14 DEBUG: pid 32636: Describe: waiting for master completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend E(45)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: Execute: portal name <>
2012-06-21 14:09:14 DEBUG: pid 32636: Execute: query: SELECT ***
2012-06-21 14:09:14 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:14 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:14 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:14 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:14 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: statement2: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: send_to_where: 0 query: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:14 DEBUG: pid 32636: can_query_context_destroy: query context is still used.
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:14 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-3:00';
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-3:00';
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:14 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:14 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:14 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:14 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:14 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:14 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276955
2012-06-21 14:09:15 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:15 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:15 LOG:   pid 32636: connection received: host=localhost.localdomain port=54232
2012-06-21 14:09:15 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:15 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:15 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:15 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:15 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:15 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:15 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: statement2: SET NAMES 'UTF8';
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 3 query: SET NAMES 'UTF8';
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend P(50)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: Parse: statement name <pdo_stmt_00000001>
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:15 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:15 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:15 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:15 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: Parse: waiting for master completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: 1
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 1 NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 1
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend B(42)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:15 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: Bind: waiting for master completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 2 NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 2
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend D(44)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:15 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: Describe: waiting for master completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend E(45)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: Execute: portal name <>
2012-06-21 14:09:15 DEBUG: pid 32636: Execute: query: SELECT ***
2012-06-21 14:09:15 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:15 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: statement2: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 0 query: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:15 DEBUG: pid 32636: can_query_context_destroy: query context is still used.
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-1:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-1:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-1:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-1:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276955
2012-06-21 14:09:15 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:15 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:15 LOG:   pid 32636: connection received: host=localhost.localdomain port=54274
2012-06-21 14:09:15 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:15 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:15 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:15 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:15 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:15 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:15 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: statement2: SET NAMES 'UTF8';
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 3 query: SET NAMES 'UTF8';
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend P(50)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: Parse: statement name <pdo_stmt_00000001>
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:15 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:15 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:15 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:15 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: Parse: waiting for master completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: 1
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 1 NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 1
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend B(42)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:15 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: Bind: waiting for master completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 2 NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 2
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend D(44)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:15 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: Describe: waiting for master completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend E(45)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: Execute: portal name <>
2012-06-21 14:09:15 DEBUG: pid 32636: Execute: query: SELECT ***
2012-06-21 14:09:15 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:15 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: statement2: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 0 query: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:15 DEBUG: pid 32636: can_query_context_destroy: query context is still used.
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-3:00';
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-3:00';
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:15 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:15 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:15 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:15 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:15 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276956
2012-06-21 14:09:16 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:16 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:16 LOG:   pid 32636: connection received: host=localhost.localdomain port=54338
2012-06-21 14:09:16 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:16 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:16 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:16 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:16 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:16 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:16 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:16 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-3:00';
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-3:00';
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-3:00
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:16 DEBUG: pid 32636: statement2: SELECT ***
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:16 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:16 DEBUG: pid 32636: function_call_walker: function name: to_char
2012-06-21 14:09:16 DEBUG: pid 32636: function_call_walker: function name: timezone
2012-06-21 14:09:16 DEBUG: pid 32636: system_catalog_walker: relname: alarm
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: system_catalog_walker: relname: object
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: temp_table_walker: relname: alarm
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: temp_table_walker: relname: object
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: unlogged_table_walker: relname: alarm
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: unlogged_table_walker: relname: object
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:16 DEBUG: pid 32636: statement2: SELECT ***
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:16 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:16 DEBUG: pid 32636: system_catalog_walker: relname: webusers
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: system_catalog_walker: relname: client
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: system_catalog_walker: relname: mod_providers
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: temp_table_walker: relname: webusers
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: temp_table_walker: relname: client
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: temp_table_walker: relname: mod_providers
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: unlogged_table_walker: relname: webusers
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: unlogged_table_walker: relname: client
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: unlogged_table_walker: relname: mod_providers
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:16 DEBUG: pid 32636: statement2: SELECT ***
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:16 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:16 DEBUG: pid 32636: system_catalog_walker: relname: mod_users
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: temp_table_walker: relname: mod_users
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: unlogged_table_walker: relname: mod_users
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276956
2012-06-21 14:09:16 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:16 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:16 LOG:   pid 32636: connection received: host=localhost.localdomain port=54390
2012-06-21 14:09:16 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:16 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:16 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:16 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:16 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:16 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:16 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:16 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-4:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-4:00DST,M3.5.0/3:00,M10.5.0/4:00';
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-4:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-4:00DST,M3.5.0/3:00,M10.5.0/4:00
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:16 DEBUG: pid 32636: statement2: SELECT ***
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:16 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:16 DEBUG: pid 32636: function_call_walker: function name: to_char
2012-06-21 14:09:16 DEBUG: pid 32636: function_call_walker: function name: timezone
2012-06-21 14:09:16 DEBUG: pid 32636: system_catalog_walker: relname: alarm
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: system_catalog_walker: relname: object
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: temp_table_walker: relname: alarm
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: temp_table_walker: relname: object
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: unlogged_table_walker: relname: alarm
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: unlogged_table_walker: relname: object
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:16 DEBUG: pid 32636: statement2: SELECT ***
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:16 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:16 DEBUG: pid 32636: system_catalog_walker: relname: webusers
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: system_catalog_walker: relname: client
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: system_catalog_walker: relname: mod_providers
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: temp_table_walker: relname: webusers
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: temp_table_walker: relname: client
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: temp_table_walker: relname: mod_providers
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: unlogged_table_walker: relname: webusers
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: unlogged_table_walker: relname: client
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: unlogged_table_walker: relname: mod_providers
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:16 DEBUG: pid 32636: statement2: SELECT ***
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:16 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:16 DEBUG: pid 32636: system_catalog_walker: relname: mod_users
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: temp_table_walker: relname: mod_users
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: unlogged_table_walker: relname: mod_users
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:16 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:16 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend D NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: D
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:16 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:16 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:16 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276956
2012-06-21 14:09:16 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:17 DEBUG: pid 32636: I am 32636 accept fd 6
2012-06-21 14:09:17 LOG:   pid 32636: connection received: host=localhost.localdomain port=54453
2012-06-21 14:09:17 DEBUG: pid 32636: Protocol Major: 1234 Minor: 5679 database:  user: 
2012-06-21 14:09:17 DEBUG: pid 32636: SSLRequest from client
2012-06-21 14:09:17 DEBUG: pid 32636: pool_ssl: SSL requested but SSL support is not available
2012-06-21 14:09:17 DEBUG: pid 32636: Protocol Major: 3 Minor: 0 database: track user: wwwdata
2012-06-21 14:09:17 DEBUG: pid 32636: pool_send_auth_ok: send pid 13680 to frontend
2012-06-21 14:09:17 DEBUG: pid 32636: select_load_balancing_node: selected backend id is 1
2012-06-21 14:09:17 DEBUG: pid 32636: selected load balancing node: 1
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_command_success: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_failed_transaction: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_transaction_isolation: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_skip_reading_from_backends: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_ignore_till_sync: done
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: statement2: SET NAMES 'UTF8';
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: send_to_where: 3 query: SET NAMES 'UTF8';
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:17 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:17 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:17 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:17 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend P(50)
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: Parse: statement name <pdo_stmt_00000001>
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:17 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:17 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:17 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:17 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:17 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:17 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:17 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:17 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:17 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:17 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:17 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:17 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:17 DEBUG: pid 32636: do_query: kind: T
2012-06-21 14:09:17 DEBUG: pid 32636: num_fileds: 1
2012-06-21 14:09:17 DEBUG: pid 32636: do_query: kind: D
2012-06-21 14:09:17 DEBUG: pid 32636: do_query: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_query: kind: Z
2012-06-21 14:09:17 DEBUG: pid 32636: Parse: waiting for master completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: detect_error: kind: 1
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 1 NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 1
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:17 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:17 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend B(42)
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:17 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:17 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:17 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:17 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:17 DEBUG: pid 32636: Bind: waiting for master completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend 2 NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: 2
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend D(44)
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:17 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:17 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:17 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:17 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:17 DEBUG: pid 32636: Describe: waiting for master completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend T NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: T
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend E(45)
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: Execute: portal name <>
2012-06-21 14:09:17 DEBUG: pid 32636: Execute: query: SELECT ***
2012-06-21 14:09:17 DEBUG: pid 32636: pool_has_insertinto_or_locking_clause: returns 0
2012-06-21 14:09:17 DEBUG: pid 32636: send_to_where: 2 query: SELECT ***
2012-06-21 14:09:17 DEBUG: pid 32636: system_catalog_walker: relname: ******
2012-06-21 14:09:17 DEBUG: pid 32636: temp_table_walker: relname: ******
2012-06-21 14:09:17 DEBUG: pid 32636: unlogged_table_walker: relname: ******
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend S(53)
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:17 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:17 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: statement2: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: send_to_where: 0 query: DEALLOCATE pdo_stmt_00000001
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:17 DEBUG: pid 32636: can_query_context_destroy: query context is still used.
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:17 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:17 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend Q(51)
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: statement2: SET TIMEZONE TO 'RUP-4:00';
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: send_to_where: 3 query: SET TIMEZONE TO 'RUP-4:00';
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: Query: BEGIN
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: transaction state: T
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_writing_transaction: done
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-4:00
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: RUP-4:00
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: Query: COMMIT
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: detect_error: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: C
2012-06-21 14:09:17 DEBUG: pid 32636: do_command: kind: Z
2012-06-21 14:09:17 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:17 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:17 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:17 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessFrontendResponse: kind from frontend X(58)
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_doing_extended_query_message: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: statement2:  DISCARD ALL
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: send_to_where: 3 query:  DISCARD ALL
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 0 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: wait_for_query_response: waiting for backend 1 completing the query
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: parameter name: is_superuser value: off
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: parameter name: session_authorization value: wwwdata
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: parameter name: client_encoding value: UTF8
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: parameter name: TimeZone value: Europe/Vilnius
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend C NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: C
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_command_success: done
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 0 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: read_kind_from_backend: read kind from 1 th backend Z NUM_BACKENDS: 2
2012-06-21 14:09:17 DEBUG: pid 32636: ProcessBackendResponse: kind from backend: Z
2012-06-21 14:09:17 DEBUG: pid 32636: pool_read_message_length: slot: 0 length: 5
2012-06-21 14:09:17 DEBUG: pid 32636: pool_read_message_length: slot: 1 length: 5
2012-06-21 14:09:17 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:17 DEBUG: pid 32636: ReadyForQuery: transaction state:I
2012-06-21 14:09:17 DEBUG: pid 32636: pool_set_writing_transaction: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_unset_query_in_progress: done
2012-06-21 14:09:17 DEBUG: pid 32636: pool_connection_pool_timer: set close time 1340276957
2012-06-21 14:09:17 DEBUG: pid 32636: pool_connection_pool_timer: set alarm after 20 seconds
2012-06-21 14:09:37 DEBUG: pid 32636: pool_backend_timer_handler called at 1340276977
2012-06-21 14:09:37 DEBUG: pid 32636: pool_backend_timer_handler: expire time: 1340276977
2012-06-21 14:09:37 DEBUG: pid 32636: pool_backend_timer_handler: expires user wwwdata database track
2012-06-21 14:10:12 DEBUG: pid 32636: child received shutdown request signal 15


More information about the pgpool-general mailing list