public inbox for [email protected]
help / color / mirror / Atom feedRe: Intermittent errors when fetching cursor rows on PostgreSQL 16
15+ messages / 3 participants
[nested] [flat]
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2024-12-19 18:11 Enrico Schenone <[email protected]>
0 siblings, 1 reply; 15+ messages in thread
From: Enrico Schenone @ 2024-12-19 18:11 UTC (permalink / raw)
To: Adrian Klaver <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
Good day, Adrian.
I get the error inside the program by catching the exception and logging
it with diagnostic info provided by the DVM (a runtime interpreter
similar in concept to a JVM) that embed the PG driver.
This is the fragment of the source code where the error occurs ...
comments are in blue color
# composing the query string with hardcoded WHERE part. In other cases
the query is parametric and values are passed with the FOREACH (FOREACH
... USING <argument list> ...)
LET l_qry = "SELECT * FROM quote_forn "||
" WHERE evento_id = "||t_qtf.evento_id||
" and bt_id = "||idhh_bt
PREPARE q_stm FROM l_qry
DECLARE c_cur CURSOR FOR q_stm
TRY
LET c_qtf = ar_qtforn.getLength()
LET j = c_qtf
# FOREACH is a code structure who simplifies the OPEN/FETCH/CLOSE
structure. It is translated at runtime to OPEN cursor ... FETCH rows ...
CLOSE cursor.
FOREACH c_cur INTO r_qtf.*
FOR v = 1 TO c_qtf
IF ... ... THEN ... ... END IF
END FOR
LET j = j + 1
LET ar_qtforn[j].id = r_qtf.id
... ...
... ...
END FOREACH
CATCH
LET str_msg = "Some error message ... event: ", t_qtf.evento_id, "
has failed. ", SQLERRMESSAGE, " - SQLSTATE: ", SQLSTATE # SQLSTATE is a
predefined variable containing the native PG SQLSTATE
# Write an application log line (the one I have sent to you inside the
cross log comparison along the timeline)
CALL GesLog(NULL, 1, str_msg)
END TRY
... ...
... ...
After that the program tries a single-row SELECT on a table just to
check if it is still able to get data from DB, and it fails with
*SQLSTATE XX000* (what you see into the log fragment one millisecond
after the server log reports error *08003*).
In some cases the query can be very complex and in other very simple, it
seems doesn't matters.
As you can see the code is very simple, but 999 times it works fine and
one time it fail returning *XX001* for minutes, and in the meantime a
lot of SQL operations including FETCH cursor works well.
I can't give you info on what the DVM does at low level, but I can send
you the distinct full session log fragment at server side, where it is
quite easy to understand how the DVM translates the program's SQL
queries end what PostgreSQL does.
May I give you any other info ?
Do you think it can be useful to include in this thread the 4Js Suppory
guys ?
Thanks again and best regards.
Enrico
*Enrico Schenone*
Software Architect
*Cleis Tech s.r.l.* - www.gruppocleis.it
Sede di Genova, Via Paolo Emilio Bensa, 2 - 16124 Genova, ITALY
Tel: +39-0104071400 Fax: +39-0104073276
Mobile: +39-320 7709352
E-mail: [email protected]
<https://gruppocleis.it><https://ibm.biz/BdqAJh;
<https://ibm.biz/BdqAJh;
<https://ibm.biz/BdqAJh;
Il 19/12/24 17:34, Adrian Klaver ha scritto:
> On 12/18/24 23:52, Enrico Schenone wrote:
>> Good day, Adrian.
>> First of all I thank-you for you answer.
>
>> At the time the error occurs, dozens of other SQL sessions are active
>> & running on DB server, and no-one is reporting any error at-all (not
>> only fetch errors).
>> This happens sometimes also in system with no (or low) stress
>> situations.
>>
>> One of things I don't understand is why at client side I get the
>> XX001 error on the FETCH (normally the first fetch) while at server
>> side I heve no error related to the fetch forward ?
>
> Where are you fetching the client error messages from?
>
>> Another is why in the meantime no other client application report an
>> error, considering that there may be several parallel instances of
>> the same client application ?
>> And finally why after seconds or minutes the same process newly
>> instantiated works with no more errors ?
>
> Answers to this and the below is going to need the client code.
>
>>
>> I can suppose that the client closes the connection once got the
>> XX001 error, but I can't say why it receives this error while it is
>> not reported at server side and not block i/o error is reported.
>> Is it a false positive or what ?
>>
>> Four Js support said <We use the standard C API provided by the DB
>> vendor. In the case of PostgreSQL, we use the C API client -
>> https://www.postgresql.org/docs/current/libpq.html >
>>
>> At client side I have installed the following PostgreSQL packages ...
>>
>> postgresql-client-16:amd64/jammy-pgdg 16.5-1.pgdg22.04+1
>> upgradeable to 16.6-1.pgdg22.04+1
>> postgresql-client-common:all/jammy-pgdg 262.pgdg22.04+1
>> upgradeable to 267.pgdg22.04+1
>>
>> Best regards.
>> Enrico
>>
>>
>> *Enrico Schenone*
>> Software Architect
>>
>> *Cleis Tech s.r.l.* - www.gruppocleis.it
>> Sede di Genova, Via Paolo Emilio Bensa, 2 - 16124 Genova, ITALY
>> Tel: +39-0104071400 Fax: +39-0104073276
>> Mobile: +39-320 7709352
>> E-mail: [email protected]
>>
>> <https://gruppocleis.it><https://ibm.biz/BdqAJh;
>>
>> <https://ibm.biz/BdqAJh;
>> <https://ibm.biz/BdqAJh;
>> Il 19/12/24 00:11, Adrian Klaver ha scritto:
>>> On 12/17/24 08:30, Enrico Schenone wrote:
>>>> Good day.
>>>> My name is Enrico Schenone, from Genoa, Italy.
>>>> I'm a software achitect working at Cleis Tech - Genoa - Italy -
>>>> http://gruppocleis.it
>>>> Me and my team are using PostgreSQL v12 to v16 on Debian 10-12 and
>>>> Ubuntu Server 22.04 LTS with no-cluster configuration.
>>>> Our applications are developed with 4Js Genero platform (classified
>>>> as LCAP) - https://4js.com
>>>>
>>>> I whish to report an issue where I can't say if it happens at
>>>> server or client side (or both as well).
>>>
>>> This:
>>>
>>> "unexpected EOF on client connection "
>>>
>>> makes me believe this is on client side.
>>>
>>> To be clear the client is running on Ubuntu Server 22.04, correct?
>>>
>>> Have you looked at the OS system log for relevant entries at the
>>> time the error occurs?
>>>
>>> If so what are they?
>>>
>>> This only happens in production environment, is there anything in it
>>> that is materially different from where you ran the test below?
>>>
>>>
>>>> Hoping you can help me or address to someone who can do it.
>>>> Thanks in advance.
>>>> Enrico
>>>> --
>>>>
>>>> *Enrico Schenone*
>>>> Software Architect
>>>>
>>>
>>
>
Attachments:
[image/jpeg] LogoCleis (4.0K, 3-LogoCleis)
download | view image
[image/png] HTTPS://IBM.BIZ/BDQAJH (1018B, 4-HTTPS:%2F%2FIBM.BIZ%2FBDQAJH)
download | view image
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2024-12-19 18:27 Adrian Klaver <[email protected]>
parent: Enrico Schenone <[email protected]>
0 siblings, 1 reply; 15+ messages in thread
From: Adrian Klaver @ 2024-12-19 18:27 UTC (permalink / raw)
To: Enrico Schenone <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
On 12/19/24 10:11, Enrico Schenone wrote:
> Good day, Adrian.
> I get the error inside the program by catching the exception and logging
> it with diagnostic info provided by the DVM (a runtime interpreter
> similar in concept to a JVM) that embed the PG driver.
DVM is this?:
https://www.geeksforgeeks.org/what-is-dvmdalvik-virtual-machine/
In other words an Android client?
> I can't give you info on what the DVM does at low level, but I can send
> you the distinct full session log fragment at server side, where it is
> quite easy to understand how the DVM translates the program's SQL
> queries end what PostgreSQL does.
That might be useful.
> May I give you any other info ?
Not at the moment.
> Do you think it can be useful to include in this thread the 4Js Suppory
> guys ?
I could see filing an issue and pointing at this thread:
https://www.postgresql.org/message-id/446423eb-4a4e-4135-bbb8-4d0e5c7aac3b%40cleistech.it
>
> Thanks again and best regards.
> Enrico
>
>
--
Adrian Klaver
[email protected]
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2024-12-19 19:40 Enrico Schenone <[email protected]>
parent: Adrian Klaver <[email protected]>
0 siblings, 1 reply; 15+ messages in thread
From: Enrico Schenone @ 2024-12-19 19:40 UTC (permalink / raw)
To: Adrian Klaver <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
Hello, my answers in line along your message ...
Thanks a lot again.
Enrico
*Enrico Schenone*
Software Architect
*Cleis Tech s.r.l.* - www.gruppocleis.it
Sede di Genova, Via Paolo Emilio Bensa, 2 - 16124 Genova, ITALY
Tel: +39-0104071400 Fax: +39-0104073276
Mobile: +39-320 7709352
E-mail: [email protected]
<https://gruppocleis.it><https://ibm.biz/BdqAJh;
<https://ibm.biz/BdqAJh;
<https://ibm.biz/BdqAJh;
Il 19/12/24 19:27, Adrian Klaver ha scritto:
> On 12/19/24 10:11, Enrico Schenone wrote:
>> Good day, Adrian.
>> I get the error inside the program by catching the exception and
>> logging it with diagnostic info provided by the DVM (a runtime
>> interpreter similar in concept to a JVM) that embed the PG driver.
>
> DVM is this?:
>
> https://www.geeksforgeeks.org/what-is-dvmdalvik-virtual-machine/
>
The 4Js DVM (Dynamic Virtual Machine) is that one
https://4js.com/online_documentation/fjs-gas-manual-html/index.html#gas-topics/c_gas_what_is_dvm.htm...
> In other words an Android client?
>
No, it is a runtime interpreter for Linux, Windows, IBM AIX, macOS and
other unix-like OSs. It ensures the portability of 4Js Genero compiled
programs (p-code) on several OS platforms.
4Js Genero is a Low Code Application Platform. The programming language,
named "BDL - Business Development Language", is an evolution of the
Informix-4gl.
Compiled programs needs a runtime interpreter (DVM) to be executed.
The DVM embeds at low-level the DB drivers provided by several vendors,
and at BDL high level the application program can easily connect to the
major DBs on the market thanks to its ODI (Open Database Interface).
>> I can't give you info on what the DVM does at low level, but I can
>> send you the distinct full session log fragment at server side, where
>> it is quite easy to understand how the DVM translates the program's
>> SQL queries end what PostgreSQL does.
>
> That might be useful.
>
Please take a look to the attached text file, that is the full failing
session log (filtered from the debug5 PostgreSQL server log).
>> May I give you any other info ?
>
> Not at the moment.
>
>> Do you think it can be useful to include in this thread the 4Js
>> Suppory guys ?
>
> I could see filing an issue and pointing at this thread:
>
> https://www.postgresql.org/message-id/446423eb-4a4e-4135-bbb8-4d0e5c7aac3b%40cleistech.it
>
>
>
>>
>> Thanks again and best regards.
>> Enrico
>>
>>
>
>
2024-12-16 17:27:12.689 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: InitPostgres
2024-12-16 17:27:12.689 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: InitPostgres, postinit.c:731
2024-12-16 17:27:12.689 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: my backend ID is 10
2024-12-16 17:27:12.689 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: SharedInvalBackendInit, sinvaladt.c:332
2024-12-16 17:27:12.690 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.690 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.692 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: processing received SASL response of length 50
2024-12-16 17:27:12.692 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: CheckSASLAuth, auth-sasl.c:113
2024-12-16 17:27:12.692 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: sending SASL challenge of length 84
2024-12-16 17:27:12.692 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: CheckSASLAuth, auth-sasl.c:184
2024-12-16 17:27:12.707 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: processing received SASL response of length 104
2024-12-16 17:27:12.707 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: CheckSASLAuth, auth-sasl.c:113
2024-12-16 17:27:12.708 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: sending SASL challenge of length 46
2024-12-16 17:27:12.708 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: CheckSASLAuth, auth-sasl.c:184
2024-12-16 17:27:12.711 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.711 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.712 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.712 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.712 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: set intervalstyle='iso_8601'
2024-12-16 17:27:12.712 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: set intervalstyle='iso_8601'
2024-12-16 17:27:12.712 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:12.713 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.713 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.713 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: set intervalstyle='iso_8601'
2024-12-16 17:27:12.713 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.713 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.713 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: set search_path = 'odds'
2024-12-16 17:27:12.713 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: set search_path = 'odds'
2024-12-16 17:27:12.713 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:12.713 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.713 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.713 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: set search_path = 'odds'
2024-12-16 17:27:12.714 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select * from wsc_richieste where modulo = $1
2024-12-16 17:27:12.714 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:12.714 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select * from wsc_richieste where modulo = $1
2024-12-16 17:27:12.714 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.714 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.714 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select * from wsc_richieste where modulo = $1
2024-12-16 17:27:12.717 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:12.717 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:12.719 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select * from wsc_richieste where modulo = $1
2024-12-16 17:27:12.719 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = 'wsc_TXodds4_1'
2024-12-16 17:27:12.719 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:12.719 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.719 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.720 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select codice, time_limit from fornitori where id = $1
2024-12-16 17:27:12.720 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:12.720 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select codice, time_limit from fornitori where id = $1
2024-12-16 17:27:12.720 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.720 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.720 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select codice, time_limit from fornitori where id = $1
2024-12-16 17:27:12.721 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:12.721 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:12.721 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select codice, time_limit from fornitori where id = $1
2024-12-16 17:27:12.721 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '1'
2024-12-16 17:27:12.721 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:12.721 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.721 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select parval from app_sy where parnam = $1
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select parval from app_sy where parnam = $1
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select parval from app_sy where parnam = $1
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select parval from app_sy where parnam = $1
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = 'ORC_JSONDIR'
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.722 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.723 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select valore from lup_tiprisp where codice = $1
2024-12-16 17:27:12.723 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:12.723 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select valore from lup_tiprisp where codice = $1
2024-12-16 17:27:12.723 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.723 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:12.723 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select valore from lup_tiprisp where codice = $1
2024-12-16 17:27:12.723 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:12.723 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:12.724 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select valore from lup_tiprisp where codice = $1
2024-12-16 17:27:12.724 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = 'X'
2024-12-16 17:27:12.724 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:12.724 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:12.724 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.260 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select valore from lup_tipget where codice = $1
2024-12-16 17:27:14.260 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.260 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select valore from lup_tipget where codice = $1
2024-12-16 17:27:14.260 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.260 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.260 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select valore from lup_tipget where codice = $1
2024-12-16 17:27:14.260 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.260 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.261 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select valore from lup_tipget where codice = $1
2024-12-16 17:27:14.261 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = 'Text'
2024-12-16 17:27:14.261 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.261 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.261 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.299 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu0: declare cu0 cursor with hold for select map_bt_forn.id, map_bt_forn.forn_id, map_bt_forn.bt_id, map_bt_forn.bt_id_f, map_bt_forn.bt_descri_f, map_bt_forn.bt_cod_f, bettype.bt_schema, bettype.tipo_qt from map_bt_forn,bettype where map_bt_forn.bt_id = bettype.id AND attivo = 'S' AND forn_id = $1 AND fl_canc = 'N' AND tipo_qt = 'G'
2024-12-16 17:27:14.299 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.299 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu0 cursor with hold for select map_bt_forn.id, map_bt_forn.forn_id, map_bt_forn.bt_id, map_bt_forn.bt_id_f, map_bt_forn.bt_descri_f, map_bt_forn.bt_cod_f, bettype.bt_schema, bettype.tipo_qt from map_bt_forn,bettype where map_bt_forn.bt_id = bettype.id AND attivo = 'S' AND forn_id = $1 AND fl_canc = 'N' AND tipo_qt = 'G'
2024-12-16 17:27:14.299 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.299 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.299 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu0 cursor with hold for select map_bt_forn.id, map_bt_forn.forn_id, map_bt_forn.bt_id, map_bt_forn.bt_id_f, map_bt_forn.bt_descri_f, map_bt_forn.bt_cod_f, bettype.bt_schema, bettype.tipo_qt from map_bt_forn,bettype where map_bt_forn.bt_id = bettype.id AND attivo = 'S' AND forn_id = $1 AND fl_canc = 'N' AND tipo_qt = 'G'
2024-12-16 17:27:14.300 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.300 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.301 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu0
2024-12-16 17:27:14.301 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.301 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.301 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.301 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu0 cursor with hold for select map_bt_forn.id, map_bt_forn.forn_id, map_bt_forn.bt_id, map_bt_forn.bt_id_f, map_bt_forn.bt_descri_f, map_bt_forn.bt_cod_f, bettype.bt_schema, bettype.tipo_qt from map_bt_forn,bettype where map_bt_forn.bt_id = bettype.id AND attivo = 'S' AND forn_id = $1 AND fl_canc = 'N' AND tipo_qt = 'G'
2024-12-16 17:27:14.301 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu0: declare cu0 cursor with hold for select map_bt_forn.id, map_bt_forn.forn_id, map_bt_forn.bt_id, map_bt_forn.bt_id_f, map_bt_forn.bt_descri_f, map_bt_forn.bt_cod_f, bettype.bt_schema, bettype.tipo_qt from map_bt_forn,bettype where map_bt_forn.bt_id = bettype.id AND attivo = 'S' AND forn_id = $1 AND fl_canc = 'N' AND tipo_qt = 'G'
2024-12-16 17:27:14.301 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '1'
2024-12-16 17:27:14.301 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.303 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.303 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.304 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.304 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.304 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu0
2024-12-16 17:27:14.304 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu0
2024-12-16 17:27:14.304 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.304 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.304 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.304 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu0
2024-12-16 17:27:14.305 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.305 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.305 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu0
2024-12-16 17:27:14.305 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu0
2024-12-16 17:27:14.305 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.305 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.305 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.305 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu0
2024-12-16 17:27:14.306 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.306 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.306 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.306 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.306 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.306 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.306 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.306 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.307 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.307 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.307 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.307 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.307 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.307 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.307 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '2'
2024-12-16 17:27:14.307 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.308 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.308 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.308 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.308 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.308 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.309 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.310 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '3'
2024-12-16 17:27:14.311 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.312 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.312 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.312 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.312 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.312 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.312 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.312 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.312 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.312 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.312 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.313 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.314 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '5'
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.315 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.316 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.317 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.318 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.318 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.318 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.318 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.318 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.318 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.318 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.318 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.318 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '6'
2024-12-16 17:27:14.318 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.318 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.318 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.319 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.320 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '7'
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.321 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.322 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.323 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '10'
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.324 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.325 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.326 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '11'
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.327 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.328 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '12'
2024-12-16 17:27:14.329 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.330 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.331 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '15'
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.332 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.333 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '16'
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.334 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.335 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.335 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.335 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.335 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.335 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.335 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.335 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.335 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.336 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '19'
2024-12-16 17:27:14.337 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.338 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.338 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.338 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.338 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.338 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.338 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.338 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.338 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.338 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.338 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.339 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '22'
2024-12-16 17:27:14.340 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.341 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.341 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.341 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.341 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.341 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.341 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.341 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.341 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.341 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.341 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.342 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.343 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '25'
2024-12-16 17:27:14.344 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.345 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.346 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.347 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '26'
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.348 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.349 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '27'
2024-12-16 17:27:14.350 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.351 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.352 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '30'
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.353 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.354 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '38'
2024-12-16 17:27:14.355 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.356 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.357 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '82'
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.358 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.359 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.360 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '4'
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.361 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.362 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: deallocate cu1
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: deallocate cu1
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.363 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu1
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu1: declare cu1 cursor with hold for select oc_id, oc_f, bt_id, fl_spread, oc_schema from map_oc_forn,outcome where outcome.id = oc_id AND map_bt_f_id = $1
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '61'
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu1
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu1
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.364 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu1
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu1
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu1
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu1
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu0
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu0
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.365 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu0
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu0
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu0
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu0
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu2: declare cu2 cursor with hold for select map_bkmk_forn.* from map_bkmk_forn,bkmk where map_bkmk_forn.bkmk_id = bkmk.id AND forn_id = $1
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu2 cursor with hold for select map_bkmk_forn.* from map_bkmk_forn,bkmk where map_bkmk_forn.bkmk_id = bkmk.id AND forn_id = $1
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu2 cursor with hold for select map_bkmk_forn.* from map_bkmk_forn,bkmk where map_bkmk_forn.bkmk_id = bkmk.id AND forn_id = $1
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.366 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.367 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu2
2024-12-16 17:27:14.367 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.367 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.367 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.367 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu2 cursor with hold for select map_bkmk_forn.* from map_bkmk_forn,bkmk where map_bkmk_forn.bkmk_id = bkmk.id AND forn_id = $1
2024-12-16 17:27:14.367 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu2: declare cu2 cursor with hold for select map_bkmk_forn.* from map_bkmk_forn,bkmk where map_bkmk_forn.bkmk_id = bkmk.id AND forn_id = $1
2024-12-16 17:27:14.367 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '1'
2024-12-16 17:27:14.367 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.367 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.367 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu2
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu2
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu2
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu2
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu2
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.368 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu2
2024-12-16 17:27:14.369 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.369 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.369 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu2
2024-12-16 17:27:14.369 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu2
2024-12-16 17:27:14.369 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.369 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.369 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.369 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu2
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu2
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu2
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu2
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu2
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu2
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.370 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu2
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu2
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu2
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu2
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu2
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu2
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.371 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu2
2024-12-16 17:27:14.372 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.372 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.372 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu2
2024-12-16 17:27:14.372 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: close cu2
2024-12-16 17:27:14.372 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.372 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.372 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.372 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: close cu2
2024-12-16 17:27:14.379 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select gender from i_tx_mastergroups where tx_id = $1
2024-12-16 17:27:14.379 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.379 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select gender from i_tx_mastergroups where tx_id = $1
2024-12-16 17:27:14.379 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.379 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.379 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select gender from i_tx_mastergroups where tx_id = $1
2024-12-16 17:27:14.379 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.379 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.380 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select gender from i_tx_mastergroups where tx_id = $1
2024-12-16 17:27:14.380 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '1052'
2024-12-16 17:27:14.380 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.380 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.380 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.380 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select sport_id from map_sport_forn where sport_id_f = '1' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.380 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.380 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select sport_id from map_sport_forn where sport_id_f = '1' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select sport_id from map_sport_forn where sport_id_f = '1' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select sport_id from map_sport_forn where sport_id_f = '1' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select nazio_id from map_nazio_forn where nazio_id_f = '438' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select nazio_id from map_nazio_forn where nazio_id_f = '438' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.381 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select nazio_id from map_nazio_forn where nazio_id_f = '438' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.382 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.382 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.382 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select nazio_id from map_nazio_forn where nazio_id_f = '438' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.382 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.382 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.382 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.383 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select lega_id from map_leghe_forn where lega_id_f = '7' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.383 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.383 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select lega_id from map_leghe_forn where lega_id_f = '7' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.383 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.383 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.383 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select lega_id from map_leghe_forn where lega_id_f = '7' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.383 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.383 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.383 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select lega_id from map_leghe_forn where lega_id_f = '7' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.383 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.384 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.384 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.385 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select stag_leg_id from map_stag_leg_forn where stag_leg_id_f = '165337' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.385 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.385 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select stag_leg_id from map_stag_leg_forn where stag_leg_id_f = '165337' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.385 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.385 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.385 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select stag_leg_id from map_stag_leg_forn where stag_leg_id_f = '165337' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.385 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.385 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.385 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select stag_leg_id from map_stag_leg_forn where stag_leg_id_f = '165337' AND forn_id = 1 AND fl_valid = 'S'
2024-12-16 17:27:14.385 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.393 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.393 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select fase_id from stagioni_lega where id = $1
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select fase_id from stagioni_lega where id = $1
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select fase_id from stagioni_lega where id = $1
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select fase_id from stagioni_lega where id = $1
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '30246'
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.394 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.395 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select team_id from map_team_forn where team_id_f = '3283' AND forn_id = 1
2024-12-16 17:27:14.395 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.395 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select team_id from map_team_forn where team_id_f = '3283' AND forn_id = 1
2024-12-16 17:27:14.395 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.395 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.395 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select team_id from map_team_forn where team_id_f = '3283' AND forn_id = 1
2024-12-16 17:27:14.395 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.395 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.395 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select team_id from map_team_forn where team_id_f = '3283' AND forn_id = 1
2024-12-16 17:27:14.395 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.395 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.395 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select team_id from map_team_forn where team_id_f = '2841' AND forn_id = 1
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select team_id from map_team_forn where team_id_f = '2841' AND forn_id = 1
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select team_id from map_team_forn where team_id_f = '2841' AND forn_id = 1
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select team_id from map_team_forn where team_id_f = '2841' AND forn_id = 1
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select palinsesti.*, eventi.* from palinsesti,eventi where evento_f_id = $1 AND palinsesti.forn_id = $2 AND eventi.id = evento_id
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select palinsesti.*, eventi.* from palinsesti,eventi where evento_f_id = $1 AND palinsesti.forn_id = $2 AND eventi.id = evento_id
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.396 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select palinsesti.*, eventi.* from palinsesti,eventi where evento_f_id = $1 AND palinsesti.forn_id = $2 AND eventi.id = evento_id
2024-12-16 17:27:14.397 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.397 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.398 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select palinsesti.*, eventi.* from palinsesti,eventi where evento_f_id = $1 AND palinsesti.forn_id = $2 AND eventi.id = evento_id
2024-12-16 17:27:14.398 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '12412686', $2 = '1'
2024-12-16 17:27:14.398 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.400 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.400 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select descri from leghe where id = $1
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select descri from leghe where id = $1
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select descri from leghe where id = $1
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select descri from leghe where id = $1
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '871'
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.401 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select descri from teams where id = $1
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select descri from teams where id = $1
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select descri from teams where id = $1
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select descri from teams where id = $1
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '49279'
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse <unnamed>: select descri from teams where id = $1
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.402 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select descri from teams where id = $1
2024-12-16 17:27:14.403 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.403 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.403 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: select descri from teams where id = $1
2024-12-16 17:27:14.403 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to <unnamed>
2024-12-16 17:27:14.403 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.403 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute <unnamed>: select descri from teams where id = $1
2024-12-16 17:27:14.403 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DETAIL: parameters: $1 = '48926'
2024-12-16 17:27:14.403 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.403 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.403 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: parse cu6: declare cu6 cursor with hold for select * from quote_forn where evento_id = 1433958 and bt_id = 2
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_parse_message, postgres.c:1420
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu6 cursor with hold for select * from quote_forn where evento_id = 1433958 and bt_id = 2
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu6 cursor with hold for select * from quote_forn where evento_id = 1433958 and bt_id = 2
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: bind <unnamed> to cu6
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_bind_message, postgres.c:1655
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: declare cu6 cursor with hold for select * from quote_forn where evento_id = 1433958 and bt_id = 2
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: execute cu6: declare cu6 cursor with hold for select * from quote_forn where evento_id = 1433958 and bt_id = 2
2024-12-16 17:27:14.404 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_execute_message, postgres.c:2214
2024-12-16 17:27:14.405 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.405 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu6
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch absolute 0 from cu6
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch absolute 0 from cu6
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: StartTransaction(1) name: unnamed; blockState: DEFAULT; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu6
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward 50 from cu6
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query, postgres.c:1073
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1) name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec, xact.c:5510
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu6
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17908006676054e0.21cb42 LOG: 08006: could not receive data from client: Connessione interrotta dal corrispondente
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17908006676054e0.21cb42 LOCATION: pq_recvbuf, pqcomm.c:953
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17908003676054e0.21cb42 DEBUG: 08003: unexpected EOF on client connection
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17908003676054e0.21cb42 LOCATION: SocketBackend, postgres.c:388
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: shmem_exit(0): 4 before_shmem_exit callbacks to make
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: shmem_exit, ipc.c:240
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: shmem_exit(0): 6 on_shmem_exit callbacks to make
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: shmem_exit, ipc.c:273
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: proc_exit(0): 2 callbacks to make
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: proc_exit_prepare, ipc.c:200
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: exit(0)
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: proc_exit, ipc.c:154
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: shmem_exit(-1): 0 before_shmem_exit callbacks to make
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: shmem_exit, ipc.c:240
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: shmem_exit(-1): 0 on_shmem_exit callbacks to make
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: shmem_exit, ipc.c:273
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: proc_exit(-1): 0 callbacks to make
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod - 192.168.16.17900000676054e0.21cb42 LOCATION: proc_exit_prepare, ipc.c:200
Attachments:
[image/jpeg] LogoCleis (4.0K, 3-LogoCleis)
download | view image
[image/png] HTTPS://IBM.BIZ/BDQAJH (1018B, 4-HTTPS:%2F%2FIBM.BIZ%2FBDQAJH)
download | view image
[text/plain] Casper_debug5_grep.log01 (251.7K, 5-Casper_debug5_grep.log01)
download
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2024-12-19 21:47 Adrian Klaver <[email protected]>
parent: Enrico Schenone <[email protected]>
0 siblings, 2 replies; 15+ messages in thread
From: Adrian Klaver @ 2024-12-19 21:47 UTC (permalink / raw)
To: Enrico Schenone <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
On 12/19/24 11:40 AM, Enrico Schenone wrote:
> Hello, my answers in line along your message ...
> Thanks a lot again.
>
> Enrico
>
>> On 12/19/24 10:11, Enrico Schenone wrote:
>>> Good day, Adrian.
>>> I get the error inside the program by catching the exception and
>>> logging it with diagnostic info provided by the DVM (a runtime
>>> interpreter similar in concept to a JVM) that embed the PG driver.
>>
> The 4Js DVM (Dynamic Virtual Machine) is that one
> https://4js.com/online_documentation/fjs-gas-manual-html/index.html#gas-topics/c_gas_what_is_dvm.htm...
>
>> In other words an Android client?
>>
> No, it is a runtime interpreter for Linux, Windows, IBM AIX, macOS and
> other unix-like OSs. It ensures the portability of 4Js Genero compiled
> programs (p-code) on several OS platforms.
> 4Js Genero is a Low Code Application Platform. The programming language,
> named "BDL - Business Development Language", is an evolution of the
> Informix-4gl.
> Compiled programs needs a runtime interpreter (DVM) to be executed.
> The DVM embeds at low-level the DB drivers provided by several vendors,
From previous post you mentioned:
"Four Js support said <We use the standard C API provided by the DB
vendor. In the case of PostgreSQL, we use the C API client "
So are they building their own driver over libpq?
> and at BDL high level the application program can easily connect to the
> major DBs on the market thanks to its ODI (Open Database Interface).
>>> I can't give you info on what the DVM does at low level, but I can
>>> send you the distinct full session log fragment at server side, where
>>> it is quite easy to understand how the DVM translates the program's
>>> SQL queries end what PostgreSQL does.
>>
>> That might be useful.
>>
> Please take a look to the attached text file, that is the full failing
> session log (filtered from the debug5 PostgreSQL server log).
This is where it falls off the rails, but I can't see why?:
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec,
xact.c:5510
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu6
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch forward
50 from cu6
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query,
postgres.c:1073
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1)
name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid: 0/1/0
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec,
xact.c:5510
2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu6
2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod -
192.168.16.17908006676054e0.21cb42 LOG: 08006: could not receive data
from client: Connessione interrotta dal corrispondente
>>> Thanks again and best regards.
>>> Enrico
--
Adrian Klaver
[email protected]
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2024-12-20 07:57 Enrico Schenone <[email protected]>
parent: Adrian Klaver <[email protected]>
1 sibling, 1 reply; 15+ messages in thread
From: Enrico Schenone @ 2024-12-20 07:57 UTC (permalink / raw)
To: Adrian Klaver <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
At 19/12/24 22:47, Adrian Klaver wrote:
>
>
> On 12/19/24 11:40 AM, Enrico Schenone wrote:
>> Hello, my answers in line along your message ...
>> Thanks a lot again.
>>
>> Enrico
>>
>
>>> On 12/19/24 10:11, Enrico Schenone wrote:
>>>> Good day, Adrian.
>>>> I get the error inside the program by catching the exception and
>>>> logging it with diagnostic info provided by the DVM (a runtime
>>>> interpreter similar in concept to a JVM) that embed the PG driver.
>>>
>
>> The 4Js DVM (Dynamic Virtual Machine) is that one
>> https://4js.com/online_documentation/fjs-gas-manual-html/index.html#gas-topics/c_gas_what_is_dvm.htm...
>>
>>> In other words an Android client?
>>>
>> No, it is a runtime interpreter for Linux, Windows, IBM AIX, macOS
>> and other unix-like OSs. It ensures the portability of 4Js Genero
>> compiled programs (p-code) on several OS platforms.
>> 4Js Genero is a Low Code Application Platform. The programming
>> language, named "BDL - Business Development Language", is an
>> evolution of the Informix-4gl.
>> Compiled programs needs a runtime interpreter (DVM) to be executed.
>> The DVM embeds at low-level the DB drivers provided by several vendors,
>
> From previous post you mentioned:
>
> "Four Js support said <We use the standard C API provided by the DB
> vendor. In the case of PostgreSQL, we use the C API client "
>
> So are they building their own driver over libpq?
I think so.
They wrote ...
<
/The error “no connection to the server“ is definitively a PostgreSQL
error:/
/||/
/|./src/interfaces/libpq/fe-exec.c: libpq_append_conn_error(conn, "no
connection to the server");|/
/It is not normal that PostgreSQL client can connect to the server, do
some SQL with success and then the SQL connection gets dropped at the
next SQL statement execution. This is really suspicious./
>
>
>> and at BDL high level the application program can easily connect to
>> the major DBs on the market thanks to its ODI (Open Database Interface).
>>>> I can't give you info on what the DVM does at low level, but I can
>>>> send you the distinct full session log fragment at server side,
>>>> where it is quite easy to understand how the DVM translates the
>>>> program's SQL queries end what PostgreSQL does.
>>>
>>> That might be useful.
>>>
>> Please take a look to the attached text file, that is the full
>> failing session log (filtered from the debug5 PostgreSQL server log).
>
> This is where it falls off the rails, but I can't see why?:
>
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec,
> xact.c:5510
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu6
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch
> forward 50 from cu6
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query,
> postgres.c:1073
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1)
> name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid:
> 0/1/0
>
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec,
> xact.c:5510
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu6
> 2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17908006676054e0.21cb42 LOG: 08006: could not receive data
> from client: Connessione interrotta dal corrispondente
>
Yes, at 2024-12-16 17:27:14.407
This seems to match exactly with the error XX001 reported by the client
application.
>>>> Thanks again and best regards.
>>>> Enrico
>
>
Best regards.
Enrico
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2024-12-20 15:02 Enrico Schenone <[email protected]>
parent: Adrian Klaver <[email protected]>
1 sibling, 2 replies; 15+ messages in thread
From: Enrico Schenone @ 2024-12-20 15:02 UTC (permalink / raw)
To: Adrian Klaver <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
Hi, Adrian.
Today I have collected a tcpdump at client side with communications
between application server and db server while the issue was occurring
one time per second on another program.
I send you two files.
The first one is a zipped tarball (.tgz) containing a text
representation of the tcpdump starting at point where it reports the
declaration of the failing cursor ("cu4" as you can see in the first
line of the file) and subsequent fetch. Consider that the client
application log detected the XX001 error on the first FETCH of the
cursor at 2024-12-20 12:17:35.175
The second file (zipped tarball .tgz) is too big to be sent as
attachment, so I provide a link where it can be downloaded. It is the
fraction of tcpdump recorded during the program failure (occurred
several times). It is in .pcap format so it is possible to open it with
Wireshark or tcpdump -A -r
Anyone interested can download it at
https://cleislabs.cleistech.it/downloads/tcpdump_out009.pcap.tgz
Consider that during the dump several different cursor was declared with
the name "cu4", but the one failing is the one of the first line.
Maybe an expert (I'm not so expert) can see if the disconnection is
really made by the client and/or if the data returned by the server are
really corrupted as per XX001 SQLSTATE.
Best regards.
Enrico
Il 19/12/24 22:47, Adrian Klaver ha scritto:
>
>
> On 12/19/24 11:40 AM, Enrico Schenone wrote:
>> Hello, my answers in line along your message ...
>> Thanks a lot again.
>>
>> Enrico
>>
>
>>> On 12/19/24 10:11, Enrico Schenone wrote:
>>>> Good day, Adrian.
>>>> I get the error inside the program by catching the exception and
>>>> logging it with diagnostic info provided by the DVM (a runtime
>>>> interpreter similar in concept to a JVM) that embed the PG driver.
>>>
>
>> The 4Js DVM (Dynamic Virtual Machine) is that one
>> https://4js.com/online_documentation/fjs-gas-manual-html/index.html#gas-topics/c_gas_what_is_dvm.htm...
>>
>>> In other words an Android client?
>>>
>> No, it is a runtime interpreter for Linux, Windows, IBM AIX, macOS
>> and other unix-like OSs. It ensures the portability of 4Js Genero
>> compiled programs (p-code) on several OS platforms.
>> 4Js Genero is a Low Code Application Platform. The programming
>> language, named "BDL - Business Development Language", is an
>> evolution of the Informix-4gl.
>> Compiled programs needs a runtime interpreter (DVM) to be executed.
>> The DVM embeds at low-level the DB drivers provided by several vendors,
>
> From previous post you mentioned:
>
> "Four Js support said <We use the standard C API provided by the DB
> vendor. In the case of PostgreSQL, we use the C API client "
>
> So are they building their own driver over libpq?
>
>> and at BDL high level the application program can easily connect to
>> the major DBs on the market thanks to its ODI (Open Database Interface).
>>>> I can't give you info on what the DVM does at low level, but I can
>>>> send you the distinct full session log fragment at server side,
>>>> where it is quite easy to understand how the DVM translates the
>>>> program's SQL queries end what PostgreSQL does.
>>>
>>> That might be useful.
>>>
>> Please take a look to the attached text file, that is the full
>> failing session log (filtered from the debug5 PostgreSQL server log).
>
> This is where it falls off the rails, but I can't see why?:
>
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec,
> xact.c:5510
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu6
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch
> forward 50 from cu6
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query,
> postgres.c:1073
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1)
> name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid:
> 0/1/0
>
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec,
> xact.c:5510
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu6
> 2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17908006676054e0.21cb42 LOG: 08006: could not receive data
> from client: Connessione interrotta dal corrispondente
>
>>>> Thanks again and best regards.
>>>> Enrico
>
>
Attachments:
[application/x-compressed-tar] tcpdump_out_009_cu4.tgz (1008.5K, 2-tcpdump_out_009_cu4.tgz)
download
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2024-12-20 16:41 Adrian Klaver <[email protected]>
parent: Enrico Schenone <[email protected]>
0 siblings, 0 replies; 15+ messages in thread
From: Adrian Klaver @ 2024-12-20 16:41 UTC (permalink / raw)
To: Enrico Schenone <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
On 12/19/24 23:57, Enrico Schenone wrote:
> At 19/12/24 22:47, Adrian Klaver wrote:
>>
>>
>> So are they building their own driver over libpq?
> I think so.
> They wrote ...
> <
>
> /The error “no connection to the server“ is definitively a PostgreSQL
> error:/
>
> /||/
> /|./src/interfaces/libpq/fe-exec.c: libpq_append_conn_error(conn, "no
> connection to the server");|/
>
> /It is not normal that PostgreSQL client can connect to the server, do
> some SQL with success and then the SQL connection gets dropped at the
> next SQL statement execution. This is really suspicious./
They must work in a perfect world where networks never fail. One that
would render the blog below unneeded:
https://www.cybertec-postgresql.com/en/tcp-keepalive-for-a-better-postgresql-experience/
>
> >
>
>>
> Best regards.
> Enrico
--
Adrian Klaver
[email protected]
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2024-12-20 16:43 Adrian Klaver <[email protected]>
parent: Enrico Schenone <[email protected]>
1 sibling, 1 reply; 15+ messages in thread
From: Adrian Klaver @ 2024-12-20 16:43 UTC (permalink / raw)
To: Enrico Schenone <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
On 12/20/24 07:02, Enrico Schenone wrote:
> Hi, Adrian.
> Today I have collected a tcpdump at client side with communications
> between application server and db server while the issue was occurring
> one time per second on another program.
> I send you two files.
> The first one is a zipped tarball (.tgz) containing a text
> representation of the tcpdump starting at point where it reports the
> declaration of the failing cursor ("cu4" as you can see in the first
> line of the file) and subsequent fetch. Consider that the client
> application log detected the XX001 error on the first FETCH of the
> cursor at 2024-12-20 12:17:35.175
> The second file (zipped tarball .tgz) is too big to be sent as
> attachment, so I provide a link where it can be downloaded. It is the
> fraction of tcpdump recorded during the program failure (occurred
> several times). It is in .pcap format so it is possible to open it with
> Wireshark or tcpdump -A -r
> Anyone interested can download it at
> https://cleislabs.cleistech.it/downloads/tcpdump_out009.pcap.tgz
>
> Consider that during the dump several different cursor was declared with
> the name "cu4", but the one failing is the one of the first line.
> Maybe an expert (I'm not so expert) can see if the disconnection is
> really made by the client and/or if the data returned by the server are
> really corrupted as per XX001 SQLSTATE.
This is beyond me, someone else will need to chime in.
>
> Best regards.
> Enrico
>
> Il 19/12/24 22:47, Adrian Klaver ha scritto:
--
Adrian Klaver
[email protected]
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2024-12-20 20:05 mark bradley <[email protected]>
parent: Enrico Schenone <[email protected]>
1 sibling, 1 reply; 15+ messages in thread
From: mark bradley @ 2024-12-20 20:05 UTC (permalink / raw)
To: Adrian Klaver <[email protected]>; [email protected] <[email protected]>
I'm getting a strange error message when I try to insert a date using the view/edit grid in pgadmin. See below. I've tried quotes, no quotes and various formats. The column type is clearly "date."
[cid:4ff69cfe-2efa-4636-8dde-6230512706f7]
Mark Brady, Ph.D.
Deputy Chief Data Officer, TRMC
amazon.com/author/markjbrady<https://amazon.com/author/markjbrady;
________________________________
From: Enrico Schenone <[email protected]>
Sent: Friday, December 20, 2024 10:02 AM
To: Adrian Klaver <[email protected]>; [email protected] <[email protected]>
Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
Subject: Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
Hi, Adrian.
Today I have collected a tcpdump at client side with communications
between application server and db server while the issue was occurring
one time per second on another program.
I send you two files.
The first one is a zipped tarball (.tgz) containing a text
representation of the tcpdump starting at point where it reports the
declaration of the failing cursor ("cu4" as you can see in the first
line of the file) and subsequent fetch. Consider that the client
application log detected the XX001 error on the first FETCH of the
cursor at 2024-12-20 12:17:35.175
The second file (zipped tarball .tgz) is too big to be sent as
attachment, so I provide a link where it can be downloaded. It is the
fraction of tcpdump recorded during the program failure (occurred
several times). It is in .pcap format so it is possible to open it with
Wireshark or tcpdump -A -r
Anyone interested can download it at
https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcleislabs.cleistech.it%2Fdownloads%...;
Consider that during the dump several different cursor was declared with
the name "cu4", but the one failing is the one of the first line.
Maybe an expert (I'm not so expert) can see if the disconnection is
really made by the client and/or if the data returned by the server are
really corrupted as per XX001 SQLSTATE.
Best regards.
Enrico
Il 19/12/24 22:47, Adrian Klaver ha scritto:
>
>
> On 12/19/24 11:40 AM, Enrico Schenone wrote:
>> Hello, my answers in line along your message ...
>> Thanks a lot again.
>>
>> Enrico
>>
>
>>> On 12/19/24 10:11, Enrico Schenone wrote:
>>>> Good day, Adrian.
>>>> I get the error inside the program by catching the exception and
>>>> logging it with diagnostic info provided by the DVM (a runtime
>>>> interpreter similar in concept to a JVM) that embed the PG driver.
>>>
>
>> The 4Js DVM (Dynamic Virtual Machine) is that one
>> https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2F4js.com%2Fonline_documentation%2Ffj...;
>>
>>> In other words an Android client?
>>>
>> No, it is a runtime interpreter for Linux, Windows, IBM AIX, macOS
>> and other unix-like OSs. It ensures the portability of 4Js Genero
>> compiled programs (p-code) on several OS platforms.
>> 4Js Genero is a Low Code Application Platform. The programming
>> language, named "BDL - Business Development Language", is an
>> evolution of the Informix-4gl.
>> Compiled programs needs a runtime interpreter (DVM) to be executed.
>> The DVM embeds at low-level the DB drivers provided by several vendors,
>
> From previous post you mentioned:
>
> "Four Js support said <We use the standard C API provided by the DB
> vendor. In the case of PostgreSQL, we use the C API client "
>
> So are they building their own driver over libpq?
>
>> and at BDL high level the application program can easily connect to
>> the major DBs on the market thanks to its ODI (Open Database Interface).
>>>> I can't give you info on what the DVM does at low level, but I can
>>>> send you the distinct full session log fragment at server side,
>>>> where it is quite easy to understand how the DVM translates the
>>>> program's SQL queries end what PostgreSQL does.
>>>
>>> That might be useful.
>>>
>> Please take a look to the attached text file, that is the full
>> failing session log (filtered from the debug5 PostgreSQL server log).
>
> This is where it falls off the rails, but I can't see why?:
>
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec,
> xact.c:5510
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu6
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 LOG: 00000: statement: fetch
> forward 50 from cu6
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 LOCATION: exec_simple_query,
> postgres.c:1073
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 DEBUG: 00000: CommitTransaction(1)
> name: unnamed; blockState: STARTED; state: INPROGRESS, xid/subid/cid:
> 0/1/0
>
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 LOCATION: ShowTransactionStateRec,
> xact.c:5510
> 2024-12-16 17:27:14.406 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17900000676054e0.21cb42 STATEMENT: fetch forward 50 from cu6
> 2024-12-16 17:27:14.407 CET [2214722] cleistech@hh24odds_prod -
> 192.168.16.17908006676054e0.21cb42 LOG: 08006: could not receive data
> from client: Connessione interrotta dal corrispondente
>
>>>> Thanks again and best regards.
>>>> Enrico
>
>
Attachments:
[image/png] image.png (55.3K, 3-image.png)
download | view image
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2024-12-20 20:11 Adrian Klaver <[email protected]>
parent: mark bradley <[email protected]>
0 siblings, 0 replies; 15+ messages in thread
From: Adrian Klaver @ 2024-12-20 20:11 UTC (permalink / raw)
To: mark bradley <[email protected]>; [email protected] <[email protected]>
On 12/20/24 12:05, mark bradley wrote:
> I'm getting a strange error message when I try to insert a date using
> the view/edit grid in pgadmin. See below. I've tried quotes, no quotes
> and various formats. The column type is clearly "date."
Don't hijack a thread, start a new one.
>
>
> Mark Brady, Ph.D.
> Deputy Chief Data Officer, TRMC
> _amazon.com/author/markjbrady <https://amazon.com/author/markjbrady>_
> ------------------------------------------------------------------------
--
Adrian Klaver
[email protected]
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2024-12-24 22:23 Enrico Schenone <[email protected]>
parent: Adrian Klaver <[email protected]>
0 siblings, 1 reply; 15+ messages in thread
From: Enrico Schenone @ 2024-12-24 22:23 UTC (permalink / raw)
To: Adrian Klaver <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
Hi, Adrian.
I'm arranging a test program with two nested cursors in two versions:
1. 4Js Genero BDL language
2. pure C with libpq language
I'll put both programs in stress execution into the production
environment looking for some hours how they behaves.
Possible combinations are:
1. no-one throws an error
2. only the 4Js Genero version throws an error
3. only the pure C version throws an error
4. both versions throws the error
This stress test should address further investigations.
I'll keep you informed.
Regards.
Enrico Schenone
Il 20/12/24 17:43, Adrian Klaver ha scritto:
> On 12/20/24 07:02, Enrico Schenone wrote:
>> Hi, Adrian.
>> Today I have collected a tcpdump at client side with communications
>> between application server and db server while the issue was
>> occurring one time per second on another program.
>> I send you two files.
>> The first one is a zipped tarball (.tgz) containing a text
>> representation of the tcpdump starting at point where it reports the
>> declaration of the failing cursor ("cu4" as you can see in the first
>> line of the file) and subsequent fetch. Consider that the client
>> application log detected the XX001 error on the first FETCH of the
>> cursor at 2024-12-20 12:17:35.175
>> The second file (zipped tarball .tgz) is too big to be sent as
>> attachment, so I provide a link where it can be downloaded. It is the
>> fraction of tcpdump recorded during the program failure (occurred
>> several times). It is in .pcap format so it is possible to open it
>> with Wireshark or tcpdump -A -r
>> Anyone interested can download it at
>> https://cleislabs.cleistech.it/downloads/tcpdump_out009.pcap.tgz
>>
>> Consider that during the dump several different cursor was declared
>> with the name "cu4", but the one failing is the one of the first line.
>> Maybe an expert (I'm not so expert) can see if the disconnection is
>> really made by the client and/or if the data returned by the server
>> are really corrupted as per XX001 SQLSTATE.
>
> This is beyond me, someone else will need to chime in.
>
>>
>> Best regards.
>> Enrico
>>
>> Il 19/12/24 22:47, Adrian Klaver ha scritto:
>
>
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2024-12-25 23:20 Adrian Klaver <[email protected]>
parent: Enrico Schenone <[email protected]>
0 siblings, 1 reply; 15+ messages in thread
From: Adrian Klaver @ 2024-12-25 23:20 UTC (permalink / raw)
To: Enrico Schenone <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
On 12/24/24 14:23, Enrico Schenone wrote:
> Hi, Adrian.
> I'm arranging a test program with two nested cursors in two versions:
>
> 1. 4Js Genero BDL language
> 2. pure C with libpq language
>
> I'll put both programs in stress execution into the production
> environment looking for some hours how they behaves.
> Possible combinations are:
>
> 1. no-one throws an error
> 2. only the 4Js Genero version throws an error
> 3. only the pure C version throws an error
> 4. both versions throws the error
>
> This stress test should address further investigations.
> I'll keep you informed.
Yes, would like to see how this turns out.
>
> Regards.
> Enrico Schenone
>
--
Adrian Klaver
[email protected]
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2025-01-13 08:45 Enrico Schenone <[email protected]>
parent: Adrian Klaver <[email protected]>
0 siblings, 1 reply; 15+ messages in thread
From: Enrico Schenone @ 2025-01-13 08:45 UTC (permalink / raw)
To: Adrian Klaver <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
Hello, Adrian.
As I said days ago, I have arranged a kind of stress test in production
environment.
I wrote a program that loads a temporary table, loads 2049 rows into
them from a baseline_table and finally declare two nested cursors.
The first cursor is on the temp table as parent while the second is on a
lookup table as child.
The program logic is the transposition of one fragment of several
production programs that was failing on cursors, and has to be intended
as a POC only.
The program has been wrote in both pure C with libpq (see attached
source program) and in 4Js Genero language.
Each program was executed by a shell script loop who ran 10 times the
program each minute with 1 second sleep between each run (see attachment).
An automatic scheduler has continuously submitted 4 parallel tasks (two
for C version and two for 4Js version programs).
The test was started the Dec, 29 2024 and it was kept in execution for
many days directly in production environment.
In total, nearly a billion of child test cursors were executed while all
other production tasks was running (normally 20 to 30 concurrent batch
services on a pool of 100).
And Well, I'm quite confused: no error at all has been detected, not
only on the test programs but in the whole production system. The error
was completely disappeared.
Then I have stopped the four tasks of the stress test leaving all other
services running for a week, and again no error at all.
No setup was changed nor servers was rebooted, nor infrastructure has
been upgraded during the test period.
As a result, at the moment I'm not understood not only Why & Where the
error was occurring, but also Why it is disappeared.
Anyone may feel free to give me his opinion.
For the moment I'll make no other test unless the error is knocking back
to my door.
*Enrico Schenone*
Software Architect
*Cleis Tech s.r.l.* - www.gruppocleis.it
Sede di Genova, Via Paolo Emilio Bensa, 2 - 16124 Genova, ITALY
Tel: +39-0104071400 Fax: +39-0104073276
Mobile: +39-320
7709352file:///home/enrico/Documenti/Work/Clienti/hh24/Incident/err-6372/C-test/C-testCursors.c
E-mail: [email protected]
<https://gruppocleis.it><https://ibm.biz/BdqAJh;
<https://ibm.biz/BdqAJh;
<https://ibm.biz/BdqAJh;
Il 26/12/24 00:20, Adrian Klaver ha scritto:
> On 12/24/24 14:23, Enrico Schenone wrote:
>> Hi, Adrian.
>> I'm arranging a test program with two nested cursors in two versions:
>>
>> 1. 4Js Genero BDL language
>> 2. pure C with libpq language
>>
>> I'll put both programs in stress execution into the production
>> environment looking for some hours how they behaves.
>> Possible combinations are:
>>
>> 1. no-one throws an error
>> 2. only the 4Js Genero version throws an error
>> 3. only the pure C version throws an error
>> 4. both versions throws the error
>>
>> This stress test should address further investigations.
>> I'll keep you informed.
>
> Yes, would like to see how this turns out.
>
>>
>> Regards.
>> Enrico Schenone
>>
>
>
Attachments:
[image/jpeg] LogoCleis (4.0K, 3-LogoCleis)
download | view image
[image/png] HTTPS://IBM.BIZ/BDQAJH (1018B, 4-HTTPS:%2F%2FIBM.BIZ%2FBDQAJH)
download | view image
[text/x-csrc] C-testCursors.c (5.2K, 5-C-testCursors.c)
download | inline:
#include <stdio.h>
#include <stdlib.h>
#include </usr/include/postgresql/libpq-fe.h>
#include <sys/time.h>
#include <time.h>
// This function print the timestamp
void print_timestamp(FILE *stream) {
struct timeval tv;
gettimeofday(&tv, NULL);
time_t now = tv.tv_sec;
struct tm *timeinfo = localtime(&now);
char buffer[64];
strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", timeinfo);
fprintf(stream, "[%s.%03ld] ", buffer, tv.tv_usec / 1000);
}
// Error handler
void handle_error(PGconn *conn, PGresult *res, const char *context) {
print_timestamp(stderr);
const char *sqlstate = res ? PQresultErrorField(res, PG_DIAG_SQLSTATE) : NULL;
fprintf(stderr, "ERROR in %s: %s", context, PQerrorMessage(conn));
if (sqlstate) {
fprintf(stderr, " (SQLSTATE: %s)", sqlstate);
}
fprintf(stderr, "\n");
if (res) PQclear(res);
PQfinish(conn);
exit(EXIT_FAILURE);
}
int main() {
print_timestamp(stdout);
printf("Start program C-testCursors\n");
const char *conninfo = "host=192.168.20.94 dbname=hh24odds_prod user=my_user password=my_password";
PGconn *conn = PQconnectdb(conninfo);
if (PQstatus(conn) != CONNECTION_OK) {
print_timestamp(stderr);
fprintf(stderr, "Connection to database failed: %s\n", PQerrorMessage(conn));
PQfinish(conn);
return EXIT_FAILURE;
}
print_timestamp(stdout);
printf("Connected to database.\n");
// Start the transaction
PGresult *res = PQexec(conn, "BEGIN");
if (PQresultStatus(res) != PGRES_COMMAND_OK) {
handle_error(conn, res, "BEGIN");
}
PQclear(res);
// Creating temporary table
res = PQexec(conn, "CREATE TEMP TABLE IF NOT EXISTS tt1 (like template_table)");
if (PQresultStatus(res) != PGRES_COMMAND_OK) {
handle_error(conn, res, "CREATE TEMP TABLE");
}
PQclear(res);
print_timestamp(stdout);
printf("Temp table created.\n");
// Caricamento della temp table
res = PQexec(conn, "INSERT INTO tt1 SELECT * FROM test_baseline_table order by nelab, bkmkc_id, sport_id, pal_c_id, bt_id, oc_id, mp_id, spread");
if (PQresultStatus(res) != PGRES_COMMAND_OK) {
handle_error(conn, res, "INSERT INTO TEMP TABLE");
}
PQclear(res);
print_timestamp(stdout);
printf("Temp table loaded.\n");
// Declaring parent cursor on temporary table
res = PQexec(conn, "DECLARE parent_cursor CURSOR FOR SELECT bt_id, evento_id FROM tt1");
if (PQresultStatus(res) != PGRES_COMMAND_OK) {
handle_error(conn, res, "DECLARE parent_cursor");
}
PQclear(res);
// Declaring child cursor out-of-parent loop
// Just as POC
res = PQexec(conn, "DECLARE child_cursor CURSOR FOR SELECT descri FROM lookup_table");
if (PQresultStatus(res) != PGRES_COMMAND_OK) {
handle_error(conn, res, "DECLARE child_cursor");
}
PQclear(res);
// Parent cursor loop
while (1) {
res = PQexec(conn, "FETCH NEXT FROM parent_cursor");
if (PQresultStatus(res) != PGRES_TUPLES_OK) {
handle_error(conn, res, "FETCH parent_cursor");
}
int nrows = PQntuples(res);
if (nrows == 0) {
PQclear(res);
break;
}
for (int i = 0; i < nrows; i++) {
char *parent_id = PQgetvalue(res, i, 0);
char *parent_name = PQgetvalue(res, i, 1);
// Child cursor whith parametric query
char query[256];
snprintf(query, sizeof(query), "CLOSE child_cursor; DECLARE child_cursor CURSOR FOR SELECT descri FROM lookup_table WHERE id = %s", parent_id);
PGresult *child_res = PQexec(conn, query);
if (PQresultStatus(child_res) != PGRES_COMMAND_OK) {
handle_error(conn, child_res, "OPEN child_cursor");
}
PQclear(child_res);
// Child cursor loop
while (1) {
child_res = PQexec(conn, "FETCH NEXT FROM child_cursor");
if (PQresultStatus(child_res) != PGRES_TUPLES_OK) {
handle_error(conn, child_res, "FETCH child_cursor");
}
int child_nrows = PQntuples(child_res);
if (child_nrows == 0) {
PQclear(child_res);
break;
}
for (int j = 0; j < child_nrows; j++) {
char *detail = PQgetvalue(child_res, j, 0);
print_timestamp(stdout);
printf("Child row: %s\n", detail);
}
PQclear(child_res);
}
}
PQclear(res);
}
print_timestamp(stdout);
printf("End of cursors process.\n");
// Chiudi il cursore padre
res = PQexec(conn, "CLOSE parent_cursor");
if (PQresultStatus(res) != PGRES_COMMAND_OK) {
handle_error(conn, res, "CLOSE parent_cursor");
}
PQclear(res);
// Note: the last child cursor was intentionally leaved open
// Closing transaction
res = PQexec(conn, "END");
if (PQresultStatus(res) != PGRES_COMMAND_OK) {
handle_error(conn, res, "END");
}
PQclear(res);
PQfinish(conn);
print_timestamp(stdout);
printf("End program C-testCursors2\n");
return EXIT_SUCCESS;
}
[application/x-shellscript] C-testCursors.sh (279B, 6-C-testCursors.sh)
download
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2025-01-13 16:19 Adrian Klaver <[email protected]>
parent: Enrico Schenone <[email protected]>
0 siblings, 1 reply; 15+ messages in thread
From: Adrian Klaver @ 2025-01-13 16:19 UTC (permalink / raw)
To: Enrico Schenone <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
On 1/13/25 00:45, Enrico Schenone wrote:
> Hello, Adrian.
> As I said days ago, I have arranged a kind of stress test in production
> environment.
> I wrote a program that loads a temporary table, loads 2049 rows into
> them from a baseline_table and finally declare two nested cursors.
> The first cursor is on the temp table as parent while the second is on a
> lookup table as child.
>
> The program logic is the transposition of one fragment of several
> production programs that was failing on cursors, and has to be intended
> as a POC only.
>
> And Well, I'm quite confused: no error at all has been detected, not
> only on the test programs but in the whole production system. The error
> was completely disappeared.
>
> Then I have stopped the four tasks of the stress test leaving all other
> services running for a week, and again no error at all.
>
> No setup was changed nor servers was rebooted, nor infrastructure has
> been upgraded during the test period.
You are absolutely sure about the above?
>
> As a result, at the moment I'm not understood not only Why & Where the
> error was occurring, but also Why it is disappeared.
Errors that 'fix' themselves are the most frustrating kind, as you know
in the back of your mind they will likely pop up again.
>
> Anyone may feel free to give me his opinion.
> For the moment I'll make no other test unless the error is knocking back
> to my door.
That is all you can do.
>
> *Enrico Schenone*
> Software Architect
>
--
Adrian Klaver
[email protected]
^ permalink raw reply [nested|flat] 15+ messages in thread
* Re: Intermittent errors when fetching cursor rows on PostgreSQL 16
@ 2025-01-13 16:59 Enrico Schenone <[email protected]>
parent: Adrian Klaver <[email protected]>
0 siblings, 0 replies; 15+ messages in thread
From: Enrico Schenone @ 2025-01-13 16:59 UTC (permalink / raw)
To: Adrian Klaver <[email protected]>; [email protected]; +Cc: Massimo Catti <[email protected]>; Livio Pizzolo <[email protected]>
Il 13/01/25 17:19, Adrian Klaver ha scritto:
> On 1/13/25 00:45, Enrico Schenone wrote:
>> Hello, Adrian.
>> As I said days ago, I have arranged a kind of stress test in
>> production environment.
>> I wrote a program that loads a temporary table, loads 2049 rows into
>> them from a baseline_table and finally declare two nested cursors.
>> The first cursor is on the temp table as parent while the second is
>> on a lookup table as child.
>>
>> The program logic is the transposition of one fragment of several
>> production programs that was failing on cursors, and has to be
>> intended as a POC only.
>>
>
>
>> And Well, I'm quite confused: no error at all has been detected, not
>> only on the test programs but in the whole production system. The
>> error was completely disappeared.
>>
>> Then I have stopped the four tasks of the stress test leaving all
>> other services running for a week, and again no error at all.
>>
>> No setup was changed nor servers was rebooted, nor infrastructure has
>> been upgraded during the test period.
>
> You are absolutely sure about the above?
I can say Yes. All test operations has been logged and verified against
the Postgresql log.
The only component not under my control is the Provider's
Infrastructure, but the infrastructure admin ensured me that no
operation at all has been made. I beleave him because it is a reliable
tecnician end a well known person.
>
>>
>> As a result, at the moment I'm not understood not only Why & Where
>> the error was occurring, but also Why it is disappeared.
>
> Errors that 'fix' themselves are the most frustrating kind, as you
> know in the back of your mind they will likely pop up again.
True, knocking again to my door ... I still can't beleave.
>
>>
>> Anyone may feel free to give me his opinion.
>> For the moment I'll make no other test unless the error is knocking
>> back to my door.
>
> That is all you can do.
>
>>
>> *Enrico Schenone*
>> Software Architect
>>
>
Thanks a lot for your interest in sharing my strange experience.
Best regards.
Enrico
*Enrico Schenone*
Software Architect
^ permalink raw reply [nested|flat] 15+ messages in thread
end of thread, other threads:[~2025-01-13 16:59 UTC | newest]
Thread overview: 15+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2024-12-19 18:11 Re: Intermittent errors when fetching cursor rows on PostgreSQL 16 Enrico Schenone <[email protected]>
2024-12-19 18:27 ` Adrian Klaver <[email protected]>
2024-12-19 19:40 ` Enrico Schenone <[email protected]>
2024-12-19 21:47 ` Adrian Klaver <[email protected]>
2024-12-20 07:57 ` Enrico Schenone <[email protected]>
2024-12-20 16:41 ` Adrian Klaver <[email protected]>
2024-12-20 15:02 ` Enrico Schenone <[email protected]>
2024-12-20 16:43 ` Adrian Klaver <[email protected]>
2024-12-24 22:23 ` Enrico Schenone <[email protected]>
2024-12-25 23:20 ` Adrian Klaver <[email protected]>
2025-01-13 08:45 ` Enrico Schenone <[email protected]>
2025-01-13 16:19 ` Adrian Klaver <[email protected]>
2025-01-13 16:59 ` Enrico Schenone <[email protected]>
2024-12-20 20:05 ` mark bradley <[email protected]>
2024-12-20 20:11 ` Adrian Klaver <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox