[pgpool-general: 9456] Re: Clarification on query results cache visibility
Achilleas Mantzios
a.mantzios at cloud.gatewaynet.com
Fri May 2 21:04:26 JST 2025
Dear Tatsuo I was not able to replicate the problem, lots of queries
lots of tables involved to make it identical.
I wrote a test but no success in making the problem happen.
On all the below I use
parents[1]=?
instead of
first(parents)=?
to eliminate exotic factors.
At least I observed that for some reason , setting in java :
prepareThreshold = 0, which means use only unnamed statements,
consistently gives correct results .
But there is clearly a problem :
an insertion happens in machdefs table and a subsequent select fetches
from memory cache. So I attach to you full logs of both pgsql and pgpool
for both runs, one with prepareThreshold=5 (problem) and one with
prepareThreshold=0 (no problem).
Since in pgpool log there is no way to get the values of the parameters
in Bind and Execute (whereas in pgsql this is possible) , I was only
"joining" the two log files by the exact timestamp . My observations,
regarding the problematic run are :
on pgpool
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2743LOG:
Parse message from frontend.
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom
line:2744DETAIL: statement: "", query: "select defid from machdefs
where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2745LOG:
DB node id: 0 backend pid: 59852 statement: Parse: select defid from
machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2746LOG:
Bind message from frontend.
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom
line:2747DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2748LOG:
DB node id: 0 backend pid: 59852 statement: Bind: select defid from
machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2749LOG:
Describe message from frontend.
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom
line:2750DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2751LOG:
DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2752LOG:
Execute message from frontend.
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom
line:2753DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2754LOG:
statement: select defid from machdefs where parents[1]=$1 order by
description,partid
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2755LOG:
fetch from memory cache
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom
line:2756DETAIL: query result fetched from cache. statement: select
defid from machdefs where parents[1]=$1 order by description,partid
0001000100010
00000040CCD179D0000
on pgsql
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA
amantzio at dynacom line:1340 LOG: duration: 0.042 ms parse <unnamed>:
select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA
amantzio at dynacom line:1341 LOG: duration: 0.070 ms bind <unnamed>:
select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA
amantzio at dynacom line:1342 DETAIL: Parameters: $1 = '214767517'
(no execute)
---
the problem is manifested here :
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2755LOG:
fetch from memory cache
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom
line:2756DETAIL: query result fetched from cache. statement: select
defid from machdefs where parents[1]=$1 order by description,partid
0001000100010
00000040CCD179D0000
because earlier he have :
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2613LOG:
DB node id: 0 backend pid: 59852 statement: Execute: insert into
machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,p
arents,specialper,action,application,pms_importance, pms_risk,
actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT
intarray_push_array(itoar($8),coalesce((select parents from machdefs
where defid=$9),'{
}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
this insertion should have invalidated the cache for this query :
select defid from machdefs where parents[1]=$1 order by description,partid
========================================
please have a look, I am so sorry I could not reprooduce by a simple
program.
(yes I looked on every detail, no luck).
On 5/1/25 06:02, Achilleas Mantzios wrote:
>
>
> On 1/5/25 03:02, Tatsuo Ishii wrote:
>>> update : the bug (this new bug) is not present prior to the first
>>> patch. So the bug (the new one) is not present in plain vanilla :
>>> pgpool-II-4.6.0 . Reverting both patches solves the issue with the new
>>> bug which has most probably to do with an array function called
>>> "first" :
>> "first" is coming with the extension? I am not familiar with it.
>
> This (and a couple of others I wrote back then) is a C function
> written by me, when still intarray was not an extension, I mean before
> the extensions framework, sometime in 2004 or so. This is a simple C
> function which returns the first element of an array.
>
> dynacom=# \df+ first
> List
> of functions
> Schema | Name | Result data type | Argument data types | Type |
> Volatility | Parallel | Owner | Security | Access privileges
> | Language | Source code |
> Description
> --------+-------+------------------+---------------------+------+------------+----------+----------+----------+--------------------------+----------+-------------+
> -------------
> public | first | integer | integer[] | func |
> immutable | unsafe | postgres | invoker | postgres=X/postgres
> +| c | first |
>
> | | | | |
> | | | | powerprom=X/postgres
> +| | |
>
> | | | | |
> | | | | default_group=X/postgres
> | | |
>
> (1 row)
>
> dynacom=#
>
>
>>> select defid, description from machdefs where first(parents)=214766150
>>> order by description;
>>>
>>> I haven't been able to reproduce with SQL (from psql).
>> Is it possible for you to create a java reproducer?
> I will try.
>>> Also reverting both patches, i.e. going back to plain vanilla
>>> pgpool-II-4.6.0 solves this new bug, but re-introduces the previous (
>>> with seeing stale and data and not invalidate data on table
>>> testpgpool)
>>>
>>>>>>> Best regards,
>>>>>>> --
>>>>>>> Tatsuo Ishii
>>>>>>> SRA OSS K.K.
>>>>>>> English:http://www.sraoss.co.jp/index_en/
>>>>>>> Japanese:http://www.sraoss.co.jp
>>>>>> _______________________________________________
>>>>>> pgpool-general mailing list
>>>>>> pgpool-general at pgpool.net
>>>>>> http://www.pgpool.net/mailman/listinfo/pgpool-general
>>>>> _______________________________________________
>>>>> pgpool-general mailing list
>>>>> pgpool-general at pgpool.net
>>>>> http://www.pgpool.net/mailman/listinfo/pgpool-general
>>>> _______________________________________________
>>>> pgpool-general mailing list
>>>> pgpool-general at pgpool.net
>>>> http://www.pgpool.net/mailman/listinfo/pgpool-general
>
> _______________________________________________
> pgpool-general mailing list
> pgpool-general at pgpool.net
> http://www.pgpool.net/mailman/listinfo/pgpool-general
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.pgpool.net/pipermail/pgpool-general/attachments/20250502/a04f44ea/attachment-0001.htm>
-------------- next part --------------
127.0.0.1(65154) [60488] 6814ae77.ec48 2025-05-02 14:38:51.591 EEST SMA amantzio at dynacom line:603 LOG: statement: DISCARD ALL
127.0.0.1(65154) [60488] 6814ae77.ec48 2025-05-02 14:38:51.591 EEST [unknown] amantzio at dynacom line:604 LOG: duration: 0.118 ms
127.0.0.1(65154) [60488] 6814ae77.ec48 2025-05-02 14:38:51.593 EEST [unknown] amantzio at dynacom line:605 LOG: disconnection: session time: 0:01:24.122 user=amantzio database=dynacom host=127.0.0.1 port=65154
127.0.0.1(11444) [60490] 6814ae79.ec4a 2025-05-02 14:38:56.337 EEST PostgreSQL JDBC Driver periodic at dynacom line:4 LOG: disconnection: session time: 0:01:27.151 user=periodic database=dynacom host=127.0.0.1 port=11444
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.115 EEST [unknown] [unknown]@[unknown] line:1 LOG: connection received: host=127.0.0.1 port=15896
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.116 EEST [unknown] amantzio at dynacom line:2 LOG: connection authenticated: user="amantzio" method=trust (/usr/local/var/lib/pgsql/data/pg_hba.conf:78)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.116 EEST [unknown] amantzio at dynacom line:3 LOG: connection authorized: user=amantzio database=dynacom
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.134 EEST [unknown] amantzio at dynacom line:4 LOG: duration: 0.178 ms parse pgpool60674: SELECT pg_catalog.version()
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.134 EEST [unknown] amantzio at dynacom line:5 LOG: duration: 0.066 ms bind pgpool60674/pgpool60674: SELECT pg_catalog.version()
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.134 EEST [unknown] amantzio at dynacom line:6 LOG: execute pgpool60674/pgpool60674: SELECT pg_catalog.version()
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.134 EEST [unknown] amantzio at dynacom line:7 LOG: duration: 0.023 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.134 EEST [unknown] amantzio at dynacom line:8 LOG: duration: 0.012 ms parse <unnamed>: SET extra_float_digits = 3
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.135 EEST [unknown] amantzio at dynacom line:9 LOG: duration: 0.005 ms bind <unnamed>: SET extra_float_digits = 3
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.135 EEST [unknown] amantzio at dynacom line:10 LOG: execute <unnamed>: SET extra_float_digits = 3
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.135 EEST [unknown] amantzio at dynacom line:11 LOG: duration: 0.017 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.135 EEST [unknown] amantzio at dynacom line:12 LOG: duration: 0.011 ms parse <unnamed>: SET application_name = 'PostgreSQL JDBC Driver'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.135 EEST [unknown] amantzio at dynacom line:13 LOG: duration: 0.003 ms bind <unnamed>: SET application_name = 'PostgreSQL JDBC Driver'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.135 EEST [unknown] amantzio at dynacom line:14 LOG: execute <unnamed>: SET application_name = 'PostgreSQL JDBC Driver'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.135 EEST PostgreSQL JDBC Driver amantzio at dynacom line:15 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.150 EEST PostgreSQL JDBC Driver amantzio at dynacom line:16 LOG: duration: 0.027 ms parse <unnamed>: SHOW TRANSACTION ISOLATION LEVEL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.150 EEST PostgreSQL JDBC Driver amantzio at dynacom line:17 LOG: duration: 0.006 ms bind <unnamed>: SHOW TRANSACTION ISOLATION LEVEL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.150 EEST PostgreSQL JDBC Driver amantzio at dynacom line:18 LOG: execute <unnamed>: SHOW TRANSACTION ISOLATION LEVEL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.150 EEST PostgreSQL JDBC Driver amantzio at dynacom line:19 LOG: duration: 0.027 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.157 EEST PostgreSQL JDBC Driver amantzio at dynacom line:20 LOG: duration: 0.017 ms parse <unnamed>: SET application_name to 'SMA '
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.157 EEST PostgreSQL JDBC Driver amantzio at dynacom line:21 LOG: duration: 0.003 ms bind <unnamed>: SET application_name to 'SMA '
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.157 EEST PostgreSQL JDBC Driver amantzio at dynacom line:22 LOG: execute <unnamed>: SET application_name to 'SMA '
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.157 EEST SMA amantzio at dynacom line:23 LOG: duration: 0.017 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.158 EEST SMA amantzio at dynacom line:24 LOG: duration: 0.347 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.159 EEST SMA amantzio at dynacom line:25 LOG: duration: 0.891 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.159 EEST SMA amantzio at dynacom line:26 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.159 EEST SMA amantzio at dynacom line:27 LOG: duration: 0.023 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.159 EEST SMA amantzio at dynacom line:28 LOG: duration: 0.030 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.159 EEST SMA amantzio at dynacom line:29 LOG: duration: 0.100 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.159 EEST SMA amantzio at dynacom line:30 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.159 EEST SMA amantzio at dynacom line:31 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.159 EEST SMA amantzio at dynacom line:32 LOG: duration: 0.054 ms parse <unnamed>: select set_search_path('bdynacom,epaybdynacom,epay')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.160 EEST SMA amantzio at dynacom line:33 LOG: duration: 0.357 ms bind <unnamed>: select set_search_path('bdynacom,epaybdynacom,epay')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.160 EEST SMA amantzio at dynacom line:34 LOG: execute <unnamed>: select set_search_path('bdynacom,epaybdynacom,epay')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.160 EEST SMA amantzio at dynacom line:35 LOG: duration: 0.492 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.177 EEST SMA amantzio at dynacom line:36 LOG: duration: 0.124 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"smanews"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.177 EEST SMA amantzio at dynacom line:37 LOG: duration: 0.023 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"smanews"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.177 EEST SMA amantzio at dynacom line:38 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"smanews"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.177 EEST SMA amantzio at dynacom line:39 LOG: duration: 0.031 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.177 EEST SMA amantzio at dynacom line:40 LOG: duration: 0.056 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.177 EEST SMA amantzio at dynacom line:41 LOG: duration: 0.157 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.177 EEST SMA amantzio at dynacom line:42 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.177 EEST SMA amantzio at dynacom line:43 LOG: duration: 0.033 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.177 EEST SMA amantzio at dynacom line:44 LOG: duration: 0.214 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.178 EEST SMA amantzio at dynacom line:45 LOG: duration: 0.219 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.178 EEST SMA amantzio at dynacom line:46 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.178 EEST SMA amantzio at dynacom line:47 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.178 EEST SMA amantzio at dynacom line:48 LOG: duration: 0.025 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'smanews' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.178 EEST SMA amantzio at dynacom line:49 LOG: duration: 0.161 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'smanews' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.178 EEST SMA amantzio at dynacom line:50 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'smanews' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.178 EEST SMA amantzio at dynacom line:51 LOG: duration: 0.049 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.178 EEST SMA amantzio at dynacom line:52 LOG: duration: 0.024 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.178 EEST SMA amantzio at dynacom line:53 LOG: duration: 0.059 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.178 EEST SMA amantzio at dynacom line:54 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.178 EEST SMA amantzio at dynacom line:55 LOG: duration: 0.007 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.178 EEST SMA amantzio at dynacom line:56 LOG: duration: 0.025 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.179 EEST SMA amantzio at dynacom line:57 LOG: duration: 0.083 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.179 EEST SMA amantzio at dynacom line:58 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.179 EEST SMA amantzio at dynacom line:59 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.179 EEST SMA amantzio at dynacom line:60 LOG: duration: 0.209 ms parse <unnamed>: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.179 EEST SMA amantzio at dynacom line:61 LOG: duration: 0.262 ms bind <unnamed>: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.179 EEST SMA amantzio at dynacom line:62 LOG: execute <unnamed>: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:55.179 EEST SMA amantzio at dynacom line:63 LOG: duration: 0.104 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.719 EEST SMA amantzio at dynacom line:64 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.719 EEST SMA amantzio at dynacom line:65 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.720 EEST SMA amantzio at dynacom line:66 LOG: duration: 0.059 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff_works_in"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:67 LOG: duration: 0.040 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff_works_in"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:68 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff_works_in"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:69 LOG: duration: 0.051 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:70 LOG: duration: 0.013 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:71 LOG: duration: 0.008 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:72 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:73 LOG: duration: 0.016 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:74 LOG: duration: 0.010 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"company_dept_instance"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:75 LOG: duration: 0.009 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"company_dept_instance"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:76 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"company_dept_instance"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:77 LOG: duration: 0.022 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:78 LOG: duration: 0.043 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff_works_in' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:79 LOG: duration: 0.208 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff_works_in' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:80 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff_works_in' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:81 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:82 LOG: duration: 0.030 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:83 LOG: duration: 0.121 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:84 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:85 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.721 EEST SMA amantzio at dynacom line:86 LOG: duration: 0.027 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_dept_instance' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:87 LOG: duration: 0.113 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_dept_instance' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:88 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_dept_instance' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:89 LOG: duration: 0.033 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:90 LOG: duration: 0.046 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:91 LOG: duration: 0.091 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:92 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:93 LOG: duration: 0.016 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:94 LOG: duration: 0.033 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:95 LOG: duration: 0.089 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:96 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:97 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:98 LOG: duration: 0.028 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:99 LOG: duration: 0.079 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:100 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:101 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:102 LOG: duration: 0.034 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:103 LOG: duration: 0.085 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:104 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.722 EEST SMA amantzio at dynacom line:105 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:106 LOG: duration: 0.028 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:107 LOG: duration: 0.048 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:108 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:109 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:110 LOG: duration: 0.027 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:111 LOG: duration: 0.045 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:112 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:113 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:114 LOG: duration: 0.028 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:115 LOG: duration: 0.061 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:116 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:117 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:118 LOG: duration: 0.027 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:119 LOG: duration: 0.043 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:120 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:121 LOG: duration: 0.009 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:122 LOG: duration: 0.022 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:123 LOG: duration: 0.038 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:124 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:125 LOG: duration: 0.008 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:126 LOG: duration: 0.020 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:127 LOG: duration: 0.035 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:128 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:129 LOG: duration: 0.008 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:130 LOG: duration: 0.019 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:131 LOG: duration: 0.034 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:132 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.723 EEST SMA amantzio at dynacom line:133 LOG: duration: 0.008 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.724 EEST SMA amantzio at dynacom line:134 LOG: duration: 0.019 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.724 EEST SMA amantzio at dynacom line:135 LOG: duration: 0.034 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.724 EEST SMA amantzio at dynacom line:136 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.724 EEST SMA amantzio at dynacom line:137 LOG: duration: 0.008 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.724 EEST SMA amantzio at dynacom line:138 LOG: duration: 0.274 ms parse <unnamed>: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.725 EEST SMA amantzio at dynacom line:139 LOG: duration: 1.010 ms bind <unnamed>: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.725 EEST SMA amantzio at dynacom line:140 DETAIL: Parameters: $1 = 'Achilleas Mantzios'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.725 EEST SMA amantzio at dynacom line:141 LOG: execute <unnamed>: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.725 EEST SMA amantzio at dynacom line:142 DETAIL: Parameters: $1 = 'Achilleas Mantzios'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.725 EEST SMA amantzio at dynacom line:143 LOG: duration: 0.080 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.725 EEST SMA amantzio at dynacom line:144 LOG: duration: 0.031 ms parse pgpool60674: SELECT oid FROM pg_catalog.pg_database WHERE datname = 'dynacom'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.725 EEST SMA amantzio at dynacom line:145 LOG: duration: 0.077 ms bind pgpool60674/pgpool60674: SELECT oid FROM pg_catalog.pg_database WHERE datname = 'dynacom'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.725 EEST SMA amantzio at dynacom line:146 LOG: execute pgpool60674/pgpool60674: SELECT oid FROM pg_catalog.pg_database WHERE datname = 'dynacom'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.725 EEST SMA amantzio at dynacom line:147 LOG: duration: 0.013 ms
127.0.0.1(21344) [60727] 6814af0c.ed37 2025-05-02 14:39:56.734 EEST [unknown] [unknown]@[unknown] line:1 LOG: connection received: host=127.0.0.1 port=21344
127.0.0.1(21344) [60727] 6814af0c.ed37 2025-05-02 14:39:56.737 EEST [unknown] periodic at dynacom line:2 LOG: connection authenticated: user="periodic" method=trust (/usr/local/var/lib/pgsql/data/pg_hba.conf:78)
127.0.0.1(21344) [60727] 6814af0c.ed37 2025-05-02 14:39:56.737 EEST [unknown] periodic at dynacom line:3 LOG: connection authorized: user=periodic database=dynacom SSL enabled (protocol=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384, bits=256)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.985 EEST SMA amantzio at dynacom line:148 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.985 EEST SMA amantzio at dynacom line:149 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.986 EEST SMA amantzio at dynacom line:150 LOG: duration: 0.065 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"machdefs"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.986 EEST SMA amantzio at dynacom line:151 LOG: duration: 0.035 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"machdefs"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.986 EEST SMA amantzio at dynacom line:152 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"machdefs"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.986 EEST SMA amantzio at dynacom line:153 LOG: duration: 0.066 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.986 EEST SMA amantzio at dynacom line:154 LOG: duration: 0.019 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"items"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.986 EEST SMA amantzio at dynacom line:155 LOG: duration: 0.010 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"items"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.986 EEST SMA amantzio at dynacom line:156 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"items"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.986 EEST SMA amantzio at dynacom line:157 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.986 EEST SMA amantzio at dynacom line:158 LOG: duration: 0.014 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"vessels"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.986 EEST SMA amantzio at dynacom line:159 LOG: duration: 0.009 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"vessels"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.986 EEST SMA amantzio at dynacom line:160 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"vessels"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.986 EEST SMA amantzio at dynacom line:161 LOG: duration: 0.030 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:162 LOG: duration: 0.015 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"machtypes"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:163 LOG: duration: 0.010 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"machtypes"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:164 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"machtypes"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:165 LOG: duration: 0.034 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:166 LOG: duration: 0.024 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"machtypesclasses"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:167 LOG: duration: 0.014 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"machtypesclasses"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:168 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"machtypesclasses"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:169 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:170 LOG: duration: 0.023 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"makers"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:171 LOG: duration: 0.013 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"makers"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:172 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"makers"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:173 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:174 LOG: duration: 0.023 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"licensees"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:175 LOG: duration: 0.014 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"licensees"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:176 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"licensees"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:177 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:178 LOG: duration: 0.020 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"machclasses"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:179 LOG: duration: 0.013 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"machclasses"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:180 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"machclasses"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:181 LOG: duration: 0.041 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:182 LOG: duration: 0.052 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:183 LOG: duration: 0.169 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:184 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.987 EEST SMA amantzio at dynacom line:185 LOG: duration: 0.032 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.988 EEST SMA amantzio at dynacom line:186 LOG: duration: 0.049 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.988 EEST SMA amantzio at dynacom line:187 LOG: duration: 0.286 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.988 EEST SMA amantzio at dynacom line:188 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.988 EEST SMA amantzio at dynacom line:189 LOG: duration: 0.017 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.988 EEST SMA amantzio at dynacom line:190 LOG: duration: 0.036 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.988 EEST SMA amantzio at dynacom line:191 LOG: duration: 0.150 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.988 EEST SMA amantzio at dynacom line:192 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.988 EEST SMA amantzio at dynacom line:193 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.988 EEST SMA amantzio at dynacom line:194 LOG: duration: 0.043 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.989 EEST SMA amantzio at dynacom line:195 LOG: duration: 0.131 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.989 EEST SMA amantzio at dynacom line:196 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.989 EEST SMA amantzio at dynacom line:197 LOG: duration: 0.032 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.989 EEST SMA amantzio at dynacom line:198 LOG: duration: 0.047 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.989 EEST SMA amantzio at dynacom line:199 LOG: duration: 0.204 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.989 EEST SMA amantzio at dynacom line:200 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.989 EEST SMA amantzio at dynacom line:201 LOG: duration: 0.016 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.989 EEST SMA amantzio at dynacom line:202 LOG: duration: 0.051 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.989 EEST SMA amantzio at dynacom line:203 LOG: duration: 0.214 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.989 EEST SMA amantzio at dynacom line:204 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.989 EEST SMA amantzio at dynacom line:205 LOG: duration: 0.018 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.989 EEST SMA amantzio at dynacom line:206 LOG: duration: 0.040 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machdefs' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.990 EEST SMA amantzio at dynacom line:207 LOG: duration: 0.190 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machdefs' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.990 EEST SMA amantzio at dynacom line:208 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machdefs' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.990 EEST SMA amantzio at dynacom line:209 LOG: duration: 0.064 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.990 EEST SMA amantzio at dynacom line:210 LOG: duration: 0.035 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'items' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.990 EEST SMA amantzio at dynacom line:211 LOG: duration: 0.150 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'items' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.990 EEST SMA amantzio at dynacom line:212 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'items' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.990 EEST SMA amantzio at dynacom line:213 LOG: duration: 0.062 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.990 EEST SMA amantzio at dynacom line:214 LOG: duration: 0.039 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'vessels' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.990 EEST SMA amantzio at dynacom line:215 LOG: duration: 0.178 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'vessels' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.990 EEST SMA amantzio at dynacom line:216 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'vessels' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.990 EEST SMA amantzio at dynacom line:217 LOG: duration: 0.066 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:218 LOG: duration: 0.038 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypes' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:219 LOG: duration: 0.167 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypes' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:220 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypes' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:221 LOG: duration: 0.059 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:222 LOG: duration: 0.034 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypesclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:223 LOG: duration: 0.159 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypesclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:224 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypesclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:225 LOG: duration: 0.058 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:226 LOG: duration: 0.034 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'makers' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:227 LOG: duration: 0.154 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'makers' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:228 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'makers' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:229 LOG: duration: 0.059 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.991 EEST SMA amantzio at dynacom line:230 LOG: duration: 0.034 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'licensees' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:231 LOG: duration: 0.155 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'licensees' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:232 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'licensees' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:233 LOG: duration: 0.058 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:234 LOG: duration: 0.040 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:235 LOG: duration: 0.180 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:236 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:237 LOG: duration: 0.061 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:238 LOG: duration: 0.036 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:239 LOG: duration: 0.095 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:240 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:241 LOG: duration: 0.024 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:242 LOG: duration: 0.032 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:243 LOG: duration: 0.082 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:244 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.992 EEST SMA amantzio at dynacom line:245 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:246 LOG: duration: 0.028 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:247 LOG: duration: 0.077 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:248 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:249 LOG: duration: 0.025 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:250 LOG: duration: 0.026 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:251 LOG: duration: 0.074 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:252 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:253 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:254 LOG: duration: 0.026 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:255 LOG: duration: 0.080 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:256 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:257 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:258 LOG: duration: 0.026 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:259 LOG: duration: 0.074 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:260 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:261 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:262 LOG: duration: 0.026 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:263 LOG: duration: 0.073 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:264 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:265 LOG: duration: 0.009 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:266 LOG: duration: 0.027 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:267 LOG: duration: 0.077 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:268 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.993 EEST SMA amantzio at dynacom line:269 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:270 LOG: duration: 0.035 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:271 LOG: duration: 0.052 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:272 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:273 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:274 LOG: duration: 0.032 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:275 LOG: duration: 0.048 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:276 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:277 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:278 LOG: duration: 0.025 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:279 LOG: duration: 0.042 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:280 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:281 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:282 LOG: duration: 0.025 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:283 LOG: duration: 0.046 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:284 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:285 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:286 LOG: duration: 0.024 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:287 LOG: duration: 0.042 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:288 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:289 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:290 LOG: duration: 0.029 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:291 LOG: duration: 0.048 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:292 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:293 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:294 LOG: duration: 0.025 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:295 LOG: duration: 0.041 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:296 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.994 EEST SMA amantzio at dynacom line:297 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:298 LOG: duration: 0.022 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:299 LOG: duration: 0.038 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:300 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:301 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:302 LOG: duration: 0.023 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:303 LOG: duration: 0.041 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:304 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:305 LOG: duration: 0.009 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:306 LOG: duration: 0.023 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:307 LOG: duration: 0.038 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:308 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:309 LOG: duration: 0.009 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:310 LOG: duration: 0.022 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:311 LOG: duration: 0.038 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:312 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:313 LOG: duration: 0.008 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:314 LOG: duration: 0.023 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:315 LOG: duration: 0.044 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:316 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:317 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:318 LOG: duration: 0.027 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:319 LOG: duration: 0.050 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:320 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:321 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:322 LOG: duration: 0.027 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:323 LOG: duration: 0.045 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:324 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:325 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.995 EEST SMA amantzio at dynacom line:326 LOG: duration: 0.037 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:327 LOG: duration: 0.062 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:328 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:329 LOG: duration: 0.016 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:330 LOG: duration: 0.035 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:331 LOG: duration: 0.058 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:332 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:333 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:334 LOG: duration: 0.029 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:335 LOG: duration: 0.105 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:336 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:337 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:338 LOG: duration: 0.029 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:339 LOG: duration: 0.087 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:340 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.996 EEST SMA amantzio at dynacom line:341 LOG: duration: 0.009 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:56.997 EEST SMA amantzio at dynacom line:342 LOG: duration: 1.114 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.033 EEST SMA amantzio at dynacom line:343 LOG: duration: 35.577 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.033 EEST SMA amantzio at dynacom line:344 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.698 EEST SMA amantzio at dynacom line:345 LOG: duration: 665.184 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.914 EEST SMA amantzio at dynacom line:346 LOG: duration: 0.032 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.914 EEST SMA amantzio at dynacom line:347 LOG: duration: 0.008 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.916 EEST SMA amantzio at dynacom line:348 LOG: duration: 0.022 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.916 EEST SMA amantzio at dynacom line:349 LOG: duration: 0.007 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.916 EEST SMA amantzio at dynacom line:350 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.916 EEST SMA amantzio at dynacom line:351 LOG: duration: 0.016 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:352 LOG: duration: 0.109 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:353 LOG: duration: 0.154 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:354 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:355 LOG: duration: 0.037 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:356 LOG: duration: 0.041 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:357 LOG: duration: 0.062 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:358 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:359 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:360 LOG: duration: 0.039 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:361 LOG: duration: 0.063 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:362 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:363 LOG: duration: 0.018 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:364 LOG: duration: 0.044 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:365 LOG: duration: 0.015 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:366 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.917 EEST SMA amantzio at dynacom line:367 LOG: duration: 0.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.918 EEST SMA amantzio at dynacom line:368 LOG: duration: 0.047 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.918 EEST SMA amantzio at dynacom line:369 LOG: duration: 0.408 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.918 EEST SMA amantzio at dynacom line:370 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.918 EEST SMA amantzio at dynacom line:371 LOG: execute <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.918 EEST SMA amantzio at dynacom line:372 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.918 EEST SMA amantzio at dynacom line:373 LOG: duration: 0.025 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.919 EEST SMA amantzio at dynacom line:374 LOG: duration: 0.023 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.919 EEST SMA amantzio at dynacom line:375 LOG: duration: 0.013 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.919 EEST SMA amantzio at dynacom line:376 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.919 EEST SMA amantzio at dynacom line:377 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.919 EEST SMA amantzio at dynacom line:378 LOG: duration: 0.146 ms parse <unnamed>: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.919 EEST SMA amantzio at dynacom line:379 LOG: duration: 0.450 ms bind <unnamed>: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.919 EEST SMA amantzio at dynacom line:380 LOG: execute <unnamed>: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.919 EEST SMA amantzio at dynacom line:381 LOG: duration: 0.022 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.920 EEST SMA amantzio at dynacom line:382 LOG: duration: 0.024 ms parse <unnamed>: select machtypeclsid from machtypes where id=214748365
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.920 EEST SMA amantzio at dynacom line:383 LOG: duration: 0.072 ms bind <unnamed>: select machtypeclsid from machtypes where id=214748365
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.920 EEST SMA amantzio at dynacom line:384 LOG: execute <unnamed>: select machtypeclsid from machtypes where id=214748365
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.920 EEST SMA amantzio at dynacom line:385 LOG: duration: 0.028 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:386 LOG: duration: 0.032 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"parts"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:387 LOG: duration: 0.013 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"parts"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:388 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"parts"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:389 LOG: duration: 0.054 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:390 LOG: duration: 0.024 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"partclasses"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:391 LOG: duration: 0.013 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"partclasses"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:392 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"partclasses"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:393 LOG: duration: 0.047 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:394 LOG: duration: 0.047 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'parts' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:395 LOG: duration: 0.215 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'parts' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:396 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'parts' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:397 LOG: duration: 0.096 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.921 EEST SMA amantzio at dynacom line:398 LOG: duration: 0.043 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'partclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:399 LOG: duration: 0.185 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'partclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:400 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'partclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:401 LOG: duration: 0.073 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:402 LOG: duration: 0.043 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:403 LOG: duration: 0.116 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:404 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:405 LOG: duration: 0.024 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:406 LOG: duration: 0.041 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:407 LOG: duration: 0.120 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:408 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:409 LOG: duration: 0.018 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:410 LOG: duration: 0.036 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:411 LOG: duration: 0.061 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:412 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:413 LOG: duration: 0.016 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.922 EEST SMA amantzio at dynacom line:414 LOG: duration: 0.033 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:415 LOG: duration: 0.054 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:416 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:417 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:418 LOG: duration: 0.040 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:419 LOG: duration: 0.060 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:420 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:421 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:422 LOG: duration: 0.041 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:423 LOG: duration: 0.064 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:424 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:425 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:426 LOG: duration: 0.034 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:427 LOG: duration: 0.061 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:428 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:429 LOG: duration: 0.021 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:430 LOG: duration: 0.033 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:431 LOG: duration: 0.066 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.923 EEST SMA amantzio at dynacom line:432 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.924 EEST SMA amantzio at dynacom line:433 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.924 EEST SMA amantzio at dynacom line:434 LOG: duration: 0.174 ms parse <unnamed>: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.925 EEST SMA amantzio at dynacom line:435 LOG: duration: 0.797 ms bind <unnamed>: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.925 EEST SMA amantzio at dynacom line:436 LOG: execute <unnamed>: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.925 EEST SMA amantzio at dynacom line:437 LOG: duration: 0.069 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.926 EEST SMA amantzio at dynacom line:438 LOG: duration: 0.082 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"pmsactions"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.926 EEST SMA amantzio at dynacom line:439 LOG: duration: 0.020 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"pmsactions"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.926 EEST SMA amantzio at dynacom line:440 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"pmsactions"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.926 EEST SMA amantzio at dynacom line:441 LOG: duration: 0.050 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.926 EEST SMA amantzio at dynacom line:442 LOG: duration: 0.056 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsactions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:443 LOG: duration: 0.232 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsactions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:444 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsactions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:445 LOG: duration: 0.078 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:446 LOG: duration: 0.044 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:447 LOG: duration: 0.123 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:448 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:449 LOG: duration: 0.019 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:450 LOG: duration: 0.033 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:451 LOG: duration: 0.054 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:452 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:453 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:454 LOG: duration: 0.039 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:455 LOG: duration: 0.060 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:456 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.927 EEST SMA amantzio at dynacom line:457 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.928 EEST SMA amantzio at dynacom line:458 LOG: duration: 0.031 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.928 EEST SMA amantzio at dynacom line:459 LOG: duration: 0.063 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.928 EEST SMA amantzio at dynacom line:460 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.928 EEST SMA amantzio at dynacom line:461 LOG: duration: 0.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.928 EEST SMA amantzio at dynacom line:462 LOG: duration: 0.077 ms parse <unnamed>: select name from pmsactions where machclsid=$1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.928 EEST SMA amantzio at dynacom line:463 LOG: duration: 0.219 ms bind <unnamed>: select name from pmsactions where machclsid=$1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.928 EEST SMA amantzio at dynacom line:464 DETAIL: Parameters: $1 = '214748371'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.928 EEST SMA amantzio at dynacom line:465 LOG: execute <unnamed>: select name from pmsactions where machclsid=$1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.928 EEST SMA amantzio at dynacom line:466 DETAIL: Parameters: $1 = '214748371'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.928 EEST SMA amantzio at dynacom line:467 LOG: duration: 0.350 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.929 EEST SMA amantzio at dynacom line:468 LOG: duration: 0.030 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"pmsapps"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.929 EEST SMA amantzio at dynacom line:469 LOG: duration: 0.019 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"pmsapps"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.929 EEST SMA amantzio at dynacom line:470 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"pmsapps"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.929 EEST SMA amantzio at dynacom line:471 LOG: duration: 0.035 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.929 EEST SMA amantzio at dynacom line:472 LOG: duration: 0.043 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsapps' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.929 EEST SMA amantzio at dynacom line:473 LOG: duration: 0.171 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsapps' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.929 EEST SMA amantzio at dynacom line:474 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsapps' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.929 EEST SMA amantzio at dynacom line:475 LOG: duration: 0.057 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:476 LOG: duration: 0.042 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:477 LOG: duration: 0.119 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:478 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:479 LOG: duration: 0.018 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:480 LOG: duration: 0.033 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:481 LOG: duration: 0.053 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:482 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:483 LOG: duration: 0.022 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:484 LOG: duration: 0.036 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:485 LOG: duration: 0.059 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:486 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:487 LOG: duration: 0.034 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:488 LOG: duration: 0.036 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:489 LOG: duration: 0.059 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:490 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.930 EEST SMA amantzio at dynacom line:491 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.931 EEST SMA amantzio at dynacom line:492 LOG: duration: 0.061 ms parse <unnamed>: select name from pmsapps
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.931 EEST SMA amantzio at dynacom line:493 LOG: duration: 0.131 ms bind <unnamed>: select name from pmsapps
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.931 EEST SMA amantzio at dynacom line:494 LOG: execute <unnamed>: select name from pmsapps
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.931 EEST SMA amantzio at dynacom line:495 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.931 EEST SMA amantzio at dynacom line:496 LOG: duration: 0.010 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.932 EEST SMA amantzio at dynacom line:497 LOG: duration: 0.009 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.932 EEST SMA amantzio at dynacom line:498 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:57.932 EEST SMA amantzio at dynacom line:499 LOG: duration: 0.073 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.501 EEST SMA amantzio at dynacom line:500 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.501 EEST SMA amantzio at dynacom line:501 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.509 EEST SMA amantzio at dynacom line:502 LOG: duration: 0.024 ms parse <unnamed>: SHOW application_name
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.509 EEST SMA amantzio at dynacom line:503 LOG: duration: 0.005 ms bind <unnamed>: SHOW application_name
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.509 EEST SMA amantzio at dynacom line:504 LOG: execute <unnamed>: SHOW application_name
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.509 EEST SMA amantzio at dynacom line:505 LOG: duration: 0.020 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.528 EEST SMA amantzio at dynacom line:506 LOG: duration: 0.017 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.528 EEST SMA amantzio at dynacom line:507 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.541 EEST SMA amantzio at dynacom line:508 LOG: duration: 0.069 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"system_parameters"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.541 EEST SMA amantzio at dynacom line:509 LOG: duration: 0.032 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"system_parameters"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.541 EEST SMA amantzio at dynacom line:510 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"system_parameters"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.541 EEST SMA amantzio at dynacom line:511 LOG: duration: 0.064 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.541 EEST SMA amantzio at dynacom line:512 LOG: duration: 0.050 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'system_parameters' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.541 EEST SMA amantzio at dynacom line:513 LOG: duration: 0.212 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'system_parameters' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.541 EEST SMA amantzio at dynacom line:514 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'system_parameters' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.541 EEST SMA amantzio at dynacom line:515 LOG: duration: 0.049 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.541 EEST SMA amantzio at dynacom line:516 LOG: duration: 0.037 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.541 EEST SMA amantzio at dynacom line:517 LOG: duration: 0.103 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:518 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:519 LOG: duration: 0.018 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:520 LOG: duration: 0.029 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:521 LOG: duration: 0.051 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:522 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:523 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:524 LOG: duration: 0.033 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:525 LOG: duration: 0.049 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:526 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:527 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:528 LOG: duration: 0.037 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:529 LOG: duration: 0.063 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:530 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:531 LOG: duration: 0.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:532 LOG: duration: 0.053 ms parse <unnamed>: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:533 LOG: duration: 0.099 ms bind <unnamed>: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:534 LOG: execute <unnamed>: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.542 EEST SMA amantzio at dynacom line:535 LOG: duration: 0.032 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.789 EEST SMA amantzio at dynacom line:536 LOG: duration: 0.027 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.789 EEST SMA amantzio at dynacom line:537 LOG: duration: 0.009 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.790 EEST SMA amantzio at dynacom line:538 LOG: duration: 0.026 ms parse <unnamed>: show application_name
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.790 EEST SMA amantzio at dynacom line:539 LOG: duration: 0.008 ms bind <unnamed>: show application_name
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.790 EEST SMA amantzio at dynacom line:540 LOG: execute <unnamed>: show application_name
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.790 EEST SMA amantzio at dynacom line:541 LOG: duration: 0.035 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.791 EEST SMA amantzio at dynacom line:542 LOG: duration: 0.071 ms parse pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"fb_useroptions"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.791 EEST SMA amantzio at dynacom line:543 LOG: duration: 0.039 ms bind pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"fb_useroptions"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.791 EEST SMA amantzio at dynacom line:544 LOG: execute pgpool60674/pgpool60674: SELECT COALESCE(pg_catalog.to_regclass('"fb_useroptions"')::oid, 0)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.791 EEST SMA amantzio at dynacom line:545 LOG: duration: 0.080 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.791 EEST SMA amantzio at dynacom line:546 LOG: duration: 0.066 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'fb_useroptions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:547 LOG: duration: 0.291 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'fb_useroptions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:548 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'fb_useroptions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:549 LOG: duration: 0.083 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:550 LOG: duration: 0.045 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:551 LOG: duration: 0.127 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:552 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:553 LOG: duration: 0.023 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:554 LOG: duration: 0.033 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:555 LOG: duration: 0.058 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:556 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relrowsecurity
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:557 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:558 LOG: duration: 0.036 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:559 LOG: duration: 0.059 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:560 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:561 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:562 LOG: duration: 0.032 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:563 LOG: duration: 0.056 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:564 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relpersistence = 'u'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.792 EEST SMA amantzio at dynacom line:565 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.793 EEST SMA amantzio at dynacom line:566 LOG: duration: 0.152 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.793 EEST SMA amantzio at dynacom line:567 LOG: duration: 0.227 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.793 EEST SMA amantzio at dynacom line:568 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.793 EEST SMA amantzio at dynacom line:569 LOG: execute <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.793 EEST SMA amantzio at dynacom line:570 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:39:58.793 EEST SMA amantzio at dynacom line:571 LOG: duration: 0.034 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:04.420 EEST SMA amantzio at dynacom line:572 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:04.420 EEST SMA amantzio at dynacom line:573 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:04.421 EEST SMA amantzio at dynacom line:574 LOG: duration: 0.230 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:04.424 EEST SMA amantzio at dynacom line:575 LOG: duration: 3.648 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:04.424 EEST SMA amantzio at dynacom line:576 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.036 EEST SMA amantzio at dynacom line:577 LOG: duration: 611.750 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.092 EEST SMA amantzio at dynacom line:578 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.092 EEST SMA amantzio at dynacom line:579 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.092 EEST SMA amantzio at dynacom line:580 LOG: duration: 0.014 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.092 EEST SMA amantzio at dynacom line:581 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.092 EEST SMA amantzio at dynacom line:582 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.092 EEST SMA amantzio at dynacom line:583 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.093 EEST SMA amantzio at dynacom line:584 LOG: duration: 0.042 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.093 EEST SMA amantzio at dynacom line:585 LOG: duration: 0.050 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.093 EEST SMA amantzio at dynacom line:586 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.093 EEST SMA amantzio at dynacom line:587 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.093 EEST SMA amantzio at dynacom line:588 LOG: duration: 0.054 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.093 EEST SMA amantzio at dynacom line:589 LOG: duration: 0.314 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.093 EEST SMA amantzio at dynacom line:590 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.094 EEST SMA amantzio at dynacom line:591 LOG: duration: 0.131 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.095 EEST SMA amantzio at dynacom line:592 LOG: duration: 0.219 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.095 EEST SMA amantzio at dynacom line:593 DETAIL: Parameters: $1 = 'sys1', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.095 EEST SMA amantzio at dynacom line:594 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.095 EEST SMA amantzio at dynacom line:595 DETAIL: Parameters: $1 = 'sys1', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.096 EEST SMA amantzio at dynacom line:596 LOG: duration: 1.729 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:597 LOG: duration: 0.032 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:598 LOG: duration: 0.116 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:599 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:600 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:601 LOG: duration: 0.059 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:602 LOG: duration: 0.017 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:603 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:604 LOG: duration: 0.008 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:605 LOG: duration: 0.033 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:606 LOG: duration: 0.113 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:607 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:608 LOG: duration: 0.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.097 EEST SMA amantzio at dynacom line:609 LOG: duration: 0.054 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767525,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.098 EEST SMA amantzio at dynacom line:610 LOG: duration: 0.158 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767525,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.098 EEST SMA amantzio at dynacom line:611 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767525,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.098 EEST SMA amantzio at dynacom line:612 LOG: duration: 0.035 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.101 EEST SMA amantzio at dynacom line:613 LOG: duration: 0.007 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.101 EEST SMA amantzio at dynacom line:614 LOG: duration: 0.003 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.101 EEST SMA amantzio at dynacom line:615 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.103 EEST SMA amantzio at dynacom line:616 LOG: duration: 2.164 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.143 EEST SMA amantzio at dynacom line:617 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.143 EEST SMA amantzio at dynacom line:618 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.143 EEST SMA amantzio at dynacom line:619 LOG: duration: 0.081 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.143 EEST SMA amantzio at dynacom line:620 LOG: duration: 0.115 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:05.143 EEST SMA amantzio at dynacom line:621 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.159 EEST SMA amantzio at dynacom line:622 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.159 EEST SMA amantzio at dynacom line:623 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.160 EEST SMA amantzio at dynacom line:624 LOG: duration: 0.157 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.163 EEST SMA amantzio at dynacom line:625 LOG: duration: 3.045 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.163 EEST SMA amantzio at dynacom line:626 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.770 EEST SMA amantzio at dynacom line:627 LOG: duration: 607.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.821 EEST SMA amantzio at dynacom line:628 LOG: duration: 0.030 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.822 EEST SMA amantzio at dynacom line:629 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.822 EEST SMA amantzio at dynacom line:630 LOG: duration: 0.018 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.822 EEST SMA amantzio at dynacom line:631 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.822 EEST SMA amantzio at dynacom line:632 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.822 EEST SMA amantzio at dynacom line:633 LOG: duration: 0.020 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.822 EEST SMA amantzio at dynacom line:634 LOG: duration: 0.043 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.822 EEST SMA amantzio at dynacom line:635 LOG: duration: 0.027 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.822 EEST SMA amantzio at dynacom line:636 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.822 EEST SMA amantzio at dynacom line:637 LOG: duration: 0.009 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.822 EEST SMA amantzio at dynacom line:638 LOG: duration: 0.058 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:639 LOG: duration: 0.295 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:640 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:641 LOG: duration: 0.088 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:642 LOG: duration: 0.079 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:643 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:644 LOG: duration: 0.020 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:645 LOG: duration: 0.033 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:646 LOG: duration: 0.059 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:647 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:648 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:649 LOG: duration: 0.013 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:650 LOG: duration: 0.009 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:651 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.823 EEST SMA amantzio at dynacom line:652 LOG: duration: 0.005 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.824 EEST SMA amantzio at dynacom line:653 LOG: duration: 0.055 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.824 EEST SMA amantzio at dynacom line:654 LOG: duration: 0.426 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.824 EEST SMA amantzio at dynacom line:655 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.824 EEST SMA amantzio at dynacom line:656 LOG: duration: 0.027 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.824 EEST SMA amantzio at dynacom line:657 LOG: duration: 0.031 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.824 EEST SMA amantzio at dynacom line:658 LOG: duration: 0.061 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.824 EEST SMA amantzio at dynacom line:659 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.824 EEST SMA amantzio at dynacom line:660 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.824 EEST SMA amantzio at dynacom line:661 LOG: duration: 0.030 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.825 EEST SMA amantzio at dynacom line:662 LOG: duration: 0.107 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.825 EEST SMA amantzio at dynacom line:663 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.825 EEST SMA amantzio at dynacom line:664 LOG: duration: 0.022 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.826 EEST SMA amantzio at dynacom line:665 LOG: duration: 0.035 ms parse pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.826 EEST SMA amantzio at dynacom line:666 LOG: duration: 0.060 ms bind pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.826 EEST SMA amantzio at dynacom line:667 LOG: execute pgpool60674/pgpool60674: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.826 EEST SMA amantzio at dynacom line:668 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.826 EEST SMA amantzio at dynacom line:669 LOG: duration: 0.085 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.827 EEST SMA amantzio at dynacom line:670 LOG: duration: 0.551 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.827 EEST SMA amantzio at dynacom line:671 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.827 EEST SMA amantzio at dynacom line:672 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.827 EEST SMA amantzio at dynacom line:673 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.827 EEST SMA amantzio at dynacom line:674 LOG: duration: 0.028 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.827 EEST SMA amantzio at dynacom line:675 LOG: duration: 0.042 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.827 EEST SMA amantzio at dynacom line:676 LOG: duration: 0.084 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.827 EEST SMA amantzio at dynacom line:677 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.827 EEST SMA amantzio at dynacom line:678 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.827 EEST SMA amantzio at dynacom line:679 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.879 EEST SMA amantzio at dynacom line:680 LOG: duration: 51.926 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.880 EEST SMA amantzio at dynacom line:681 LOG: duration: 0.147 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.881 EEST SMA amantzio at dynacom line:682 LOG: duration: 0.779 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.881 EEST SMA amantzio at dynacom line:683 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.881 EEST SMA amantzio at dynacom line:684 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.881 EEST SMA amantzio at dynacom line:685 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.881 EEST SMA amantzio at dynacom line:686 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.882 EEST SMA amantzio at dynacom line:687 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.882 EEST SMA amantzio at dynacom line:688 LOG: duration: 0.068 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.882 EEST SMA amantzio at dynacom line:689 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.882 EEST SMA amantzio at dynacom line:690 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.882 EEST SMA amantzio at dynacom line:691 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.937 EEST SMA amantzio at dynacom line:692 LOG: duration: 55.621 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.938 EEST SMA amantzio at dynacom line:693 LOG: duration: 0.023 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.938 EEST SMA amantzio at dynacom line:694 LOG: duration: 0.025 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.938 EEST SMA amantzio at dynacom line:695 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:07.938 EEST SMA amantzio at dynacom line:696 LOG: duration: 0.072 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:08.097 EEST SMA amantzio at dynacom line:697 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:08.097 EEST SMA amantzio at dynacom line:698 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:08.097 EEST SMA amantzio at dynacom line:699 LOG: duration: 0.070 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:08.097 EEST SMA amantzio at dynacom line:700 LOG: duration: 0.094 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:08.097 EEST SMA amantzio at dynacom line:701 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.114 EEST SMA amantzio at dynacom line:702 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.114 EEST SMA amantzio at dynacom line:703 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.115 EEST SMA amantzio at dynacom line:704 LOG: duration: 0.176 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.118 EEST SMA amantzio at dynacom line:705 LOG: duration: 3.726 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.118 EEST SMA amantzio at dynacom line:706 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.717 EEST SMA amantzio at dynacom line:707 LOG: duration: 598.648 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.762 EEST SMA amantzio at dynacom line:708 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.762 EEST SMA amantzio at dynacom line:709 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.762 EEST SMA amantzio at dynacom line:710 LOG: duration: 0.015 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.762 EEST SMA amantzio at dynacom line:711 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.762 EEST SMA amantzio at dynacom line:712 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.762 EEST SMA amantzio at dynacom line:713 LOG: duration: 0.017 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.762 EEST SMA amantzio at dynacom line:714 LOG: duration: 0.037 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.762 EEST SMA amantzio at dynacom line:715 LOG: duration: 0.027 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.762 EEST SMA amantzio at dynacom line:716 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.762 EEST SMA amantzio at dynacom line:717 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.762 EEST SMA amantzio at dynacom line:718 LOG: duration: 0.050 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.763 EEST SMA amantzio at dynacom line:719 LOG: duration: 0.288 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.763 EEST SMA amantzio at dynacom line:720 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.764 EEST SMA amantzio at dynacom line:721 LOG: duration: 0.068 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.764 EEST SMA amantzio at dynacom line:722 LOG: duration: 0.112 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.764 EEST SMA amantzio at dynacom line:723 DETAIL: Parameters: $1 = 'sys2', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.764 EEST SMA amantzio at dynacom line:724 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.764 EEST SMA amantzio at dynacom line:725 DETAIL: Parameters: $1 = 'sys2', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.764 EEST SMA amantzio at dynacom line:726 LOG: duration: 0.440 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.764 EEST SMA amantzio at dynacom line:727 LOG: duration: 0.017 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.764 EEST SMA amantzio at dynacom line:728 LOG: duration: 0.020 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.764 EEST SMA amantzio at dynacom line:729 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.764 EEST SMA amantzio at dynacom line:730 LOG: duration: 0.009 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.765 EEST SMA amantzio at dynacom line:731 LOG: duration: 0.039 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767526,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.765 EEST SMA amantzio at dynacom line:732 LOG: duration: 0.120 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767526,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.765 EEST SMA amantzio at dynacom line:733 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767526,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.765 EEST SMA amantzio at dynacom line:734 LOG: duration: 0.027 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.781 EEST SMA amantzio at dynacom line:735 LOG: duration: 0.014 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.781 EEST SMA amantzio at dynacom line:736 LOG: duration: 0.006 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.781 EEST SMA amantzio at dynacom line:737 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:12.806 EEST SMA amantzio at dynacom line:738 LOG: duration: 24.349 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:13.150 EEST SMA amantzio at dynacom line:739 LOG: duration: 0.017 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:13.150 EEST SMA amantzio at dynacom line:740 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:13.151 EEST SMA amantzio at dynacom line:741 LOG: duration: 0.094 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:13.151 EEST SMA amantzio at dynacom line:742 LOG: duration: 0.118 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:13.151 EEST SMA amantzio at dynacom line:743 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:15.336 EEST SMA amantzio at dynacom line:744 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:15.336 EEST SMA amantzio at dynacom line:745 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:15.336 EEST SMA amantzio at dynacom line:746 LOG: duration: 0.175 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:15.340 EEST SMA amantzio at dynacom line:747 LOG: duration: 3.559 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:15.340 EEST SMA amantzio at dynacom line:748 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.035 EEST SMA amantzio at dynacom line:749 LOG: duration: 695.557 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.064 EEST SMA amantzio at dynacom line:750 LOG: duration: 0.035 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.064 EEST SMA amantzio at dynacom line:751 LOG: duration: 0.008 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.065 EEST SMA amantzio at dynacom line:752 LOG: duration: 0.019 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.065 EEST SMA amantzio at dynacom line:753 LOG: duration: 0.007 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.065 EEST SMA amantzio at dynacom line:754 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.065 EEST SMA amantzio at dynacom line:755 LOG: duration: 0.024 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.065 EEST SMA amantzio at dynacom line:756 LOG: duration: 0.046 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.065 EEST SMA amantzio at dynacom line:757 LOG: duration: 0.037 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.065 EEST SMA amantzio at dynacom line:758 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.065 EEST SMA amantzio at dynacom line:759 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.065 EEST SMA amantzio at dynacom line:760 LOG: duration: 0.074 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.065 EEST SMA amantzio at dynacom line:761 LOG: duration: 0.339 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.065 EEST SMA amantzio at dynacom line:762 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.066 EEST SMA amantzio at dynacom line:763 LOG: duration: 0.015 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.066 EEST SMA amantzio at dynacom line:764 LOG: duration: 0.010 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.066 EEST SMA amantzio at dynacom line:765 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.066 EEST SMA amantzio at dynacom line:766 LOG: duration: 0.005 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.066 EEST SMA amantzio at dynacom line:767 LOG: duration: 0.061 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.066 EEST SMA amantzio at dynacom line:768 LOG: duration: 0.507 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.067 EEST SMA amantzio at dynacom line:769 LOG: duration: 0.030 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.067 EEST SMA amantzio at dynacom line:770 LOG: duration: 0.094 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.067 EEST SMA amantzio at dynacom line:771 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.067 EEST SMA amantzio at dynacom line:772 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.067 EEST SMA amantzio at dynacom line:773 LOG: duration: 0.057 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.068 EEST SMA amantzio at dynacom line:774 LOG: duration: 0.491 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.068 EEST SMA amantzio at dynacom line:775 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.068 EEST SMA amantzio at dynacom line:776 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.068 EEST SMA amantzio at dynacom line:777 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.068 EEST SMA amantzio at dynacom line:778 LOG: duration: 0.036 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.068 EEST SMA amantzio at dynacom line:779 LOG: duration: 0.030 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.068 EEST SMA amantzio at dynacom line:780 LOG: duration: 0.067 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.068 EEST SMA amantzio at dynacom line:781 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.068 EEST SMA amantzio at dynacom line:782 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.068 EEST SMA amantzio at dynacom line:783 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.116 EEST SMA amantzio at dynacom line:784 LOG: duration: 48.173 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.117 EEST SMA amantzio at dynacom line:785 LOG: duration: 0.140 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.118 EEST SMA amantzio at dynacom line:786 LOG: duration: 0.734 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.118 EEST SMA amantzio at dynacom line:787 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.118 EEST SMA amantzio at dynacom line:788 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.118 EEST SMA amantzio at dynacom line:789 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.118 EEST SMA amantzio at dynacom line:790 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.118 EEST SMA amantzio at dynacom line:791 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.118 EEST SMA amantzio at dynacom line:792 LOG: duration: 0.063 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.118 EEST SMA amantzio at dynacom line:793 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.118 EEST SMA amantzio at dynacom line:794 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.118 EEST SMA amantzio at dynacom line:795 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.162 EEST SMA amantzio at dynacom line:796 LOG: duration: 43.401 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.162 EEST SMA amantzio at dynacom line:797 LOG: duration: 0.131 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.163 EEST SMA amantzio at dynacom line:798 LOG: duration: 0.694 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.163 EEST SMA amantzio at dynacom line:799 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.163 EEST SMA amantzio at dynacom line:800 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.163 EEST SMA amantzio at dynacom line:801 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.163 EEST SMA amantzio at dynacom line:802 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.163 EEST SMA amantzio at dynacom line:803 LOG: duration: 0.037 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.163 EEST SMA amantzio at dynacom line:804 LOG: duration: 0.073 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.163 EEST SMA amantzio at dynacom line:805 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.163 EEST SMA amantzio at dynacom line:806 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.163 EEST SMA amantzio at dynacom line:807 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.211 EEST SMA amantzio at dynacom line:808 LOG: duration: 47.201 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.211 EEST SMA amantzio at dynacom line:809 LOG: duration: 0.022 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.211 EEST SMA amantzio at dynacom line:810 LOG: duration: 0.024 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.211 EEST SMA amantzio at dynacom line:811 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.211 EEST SMA amantzio at dynacom line:812 LOG: duration: 0.067 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.432 EEST SMA amantzio at dynacom line:813 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.432 EEST SMA amantzio at dynacom line:814 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.432 EEST SMA amantzio at dynacom line:815 LOG: duration: 0.077 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.432 EEST SMA amantzio at dynacom line:816 LOG: duration: 0.096 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:16.432 EEST SMA amantzio at dynacom line:817 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:23.610 EEST SMA amantzio at dynacom line:818 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:23.610 EEST SMA amantzio at dynacom line:819 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:23.610 EEST SMA amantzio at dynacom line:820 LOG: duration: 0.188 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:23.614 EEST SMA amantzio at dynacom line:821 LOG: duration: 3.904 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:23.614 EEST SMA amantzio at dynacom line:822 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.311 EEST SMA amantzio at dynacom line:823 LOG: duration: 697.044 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.339 EEST SMA amantzio at dynacom line:824 LOG: duration: 0.026 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.339 EEST SMA amantzio at dynacom line:825 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.340 EEST SMA amantzio at dynacom line:826 LOG: duration: 0.015 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.340 EEST SMA amantzio at dynacom line:827 LOG: duration: 0.005 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.340 EEST SMA amantzio at dynacom line:828 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.340 EEST SMA amantzio at dynacom line:829 LOG: duration: 0.021 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.340 EEST SMA amantzio at dynacom line:830 LOG: duration: 0.040 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.340 EEST SMA amantzio at dynacom line:831 LOG: duration: 0.026 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.340 EEST SMA amantzio at dynacom line:832 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.340 EEST SMA amantzio at dynacom line:833 LOG: duration: 0.009 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.340 EEST SMA amantzio at dynacom line:834 LOG: duration: 0.053 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.340 EEST SMA amantzio at dynacom line:835 LOG: duration: 0.292 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.340 EEST SMA amantzio at dynacom line:836 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.340 EEST SMA amantzio at dynacom line:837 LOG: duration: 0.071 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.341 EEST SMA amantzio at dynacom line:838 LOG: duration: 0.109 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.341 EEST SMA amantzio at dynacom line:839 DETAIL: Parameters: $1 = 'sys3', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.341 EEST SMA amantzio at dynacom line:840 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.341 EEST SMA amantzio at dynacom line:841 DETAIL: Parameters: $1 = 'sys3', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.341 EEST SMA amantzio at dynacom line:842 LOG: duration: 0.410 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.341 EEST SMA amantzio at dynacom line:843 LOG: duration: 0.016 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.341 EEST SMA amantzio at dynacom line:844 LOG: duration: 0.013 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.341 EEST SMA amantzio at dynacom line:845 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.341 EEST SMA amantzio at dynacom line:846 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.341 EEST SMA amantzio at dynacom line:847 LOG: duration: 0.034 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767527,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.342 EEST SMA amantzio at dynacom line:848 LOG: duration: 0.101 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767527,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.342 EEST SMA amantzio at dynacom line:849 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767527,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.342 EEST SMA amantzio at dynacom line:850 LOG: duration: 0.025 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.346 EEST SMA amantzio at dynacom line:851 LOG: duration: 0.006 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.346 EEST SMA amantzio at dynacom line:852 LOG: duration: 0.007 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.346 EEST SMA amantzio at dynacom line:853 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.358 EEST SMA amantzio at dynacom line:854 LOG: duration: 11.945 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.839 EEST SMA amantzio at dynacom line:855 LOG: duration: 0.023 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.839 EEST SMA amantzio at dynacom line:856 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.840 EEST SMA amantzio at dynacom line:857 LOG: duration: 0.089 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.840 EEST SMA amantzio at dynacom line:858 LOG: duration: 0.105 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:24.840 EEST SMA amantzio at dynacom line:859 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.055 EEST SMA amantzio at dynacom line:860 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.055 EEST SMA amantzio at dynacom line:861 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.056 EEST SMA amantzio at dynacom line:862 LOG: duration: 0.183 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.059 EEST SMA amantzio at dynacom line:863 LOG: duration: 3.431 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.059 EEST SMA amantzio at dynacom line:864 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.740 EEST SMA amantzio at dynacom line:865 LOG: duration: 681.049 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.764 EEST SMA amantzio at dynacom line:866 LOG: duration: 0.024 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.764 EEST SMA amantzio at dynacom line:867 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.765 EEST SMA amantzio at dynacom line:868 LOG: duration: 0.017 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.765 EEST SMA amantzio at dynacom line:869 LOG: duration: 0.006 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.765 EEST SMA amantzio at dynacom line:870 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.765 EEST SMA amantzio at dynacom line:871 LOG: duration: 0.017 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.765 EEST SMA amantzio at dynacom line:872 LOG: duration: 0.039 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.765 EEST SMA amantzio at dynacom line:873 LOG: duration: 0.027 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.765 EEST SMA amantzio at dynacom line:874 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.765 EEST SMA amantzio at dynacom line:875 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.765 EEST SMA amantzio at dynacom line:876 LOG: duration: 0.053 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.766 EEST SMA amantzio at dynacom line:877 LOG: duration: 0.379 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.766 EEST SMA amantzio at dynacom line:878 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.766 EEST SMA amantzio at dynacom line:879 LOG: duration: 0.015 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.766 EEST SMA amantzio at dynacom line:880 LOG: duration: 0.011 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.766 EEST SMA amantzio at dynacom line:881 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.766 EEST SMA amantzio at dynacom line:882 LOG: duration: 0.006 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.766 EEST SMA amantzio at dynacom line:883 LOG: duration: 0.053 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.767 EEST SMA amantzio at dynacom line:884 LOG: duration: 0.425 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.767 EEST SMA amantzio at dynacom line:885 LOG: duration: 0.027 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.767 EEST SMA amantzio at dynacom line:886 LOG: duration: 0.107 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.767 EEST SMA amantzio at dynacom line:887 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.767 EEST SMA amantzio at dynacom line:888 LOG: duration: 0.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.767 EEST SMA amantzio at dynacom line:889 LOG: duration: 0.054 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.768 EEST SMA amantzio at dynacom line:890 LOG: duration: 0.499 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.768 EEST SMA amantzio at dynacom line:891 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.768 EEST SMA amantzio at dynacom line:892 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.768 EEST SMA amantzio at dynacom line:893 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.768 EEST SMA amantzio at dynacom line:894 LOG: duration: 0.041 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.768 EEST SMA amantzio at dynacom line:895 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.768 EEST SMA amantzio at dynacom line:896 LOG: duration: 0.081 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.768 EEST SMA amantzio at dynacom line:897 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.768 EEST SMA amantzio at dynacom line:898 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.768 EEST SMA amantzio at dynacom line:899 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.824 EEST SMA amantzio at dynacom line:900 LOG: duration: 56.405 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.825 EEST SMA amantzio at dynacom line:901 LOG: duration: 0.150 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.826 EEST SMA amantzio at dynacom line:902 LOG: duration: 0.672 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.826 EEST SMA amantzio at dynacom line:903 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.826 EEST SMA amantzio at dynacom line:904 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.826 EEST SMA amantzio at dynacom line:905 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.826 EEST SMA amantzio at dynacom line:906 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.826 EEST SMA amantzio at dynacom line:907 LOG: duration: 0.040 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.826 EEST SMA amantzio at dynacom line:908 LOG: duration: 0.085 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.826 EEST SMA amantzio at dynacom line:909 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.827 EEST SMA amantzio at dynacom line:910 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.827 EEST SMA amantzio at dynacom line:911 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.871 EEST SMA amantzio at dynacom line:912 LOG: duration: 44.059 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.871 EEST SMA amantzio at dynacom line:913 LOG: duration: 0.124 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.872 EEST SMA amantzio at dynacom line:914 LOG: duration: 0.649 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.872 EEST SMA amantzio at dynacom line:915 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.872 EEST SMA amantzio at dynacom line:916 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.872 EEST SMA amantzio at dynacom line:917 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.872 EEST SMA amantzio at dynacom line:918 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.872 EEST SMA amantzio at dynacom line:919 LOG: duration: 0.025 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.872 EEST SMA amantzio at dynacom line:920 LOG: duration: 0.061 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.872 EEST SMA amantzio at dynacom line:921 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.872 EEST SMA amantzio at dynacom line:922 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.872 EEST SMA amantzio at dynacom line:923 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.915 EEST SMA amantzio at dynacom line:924 LOG: duration: 42.731 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.916 EEST SMA amantzio at dynacom line:925 LOG: duration: 0.130 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.917 EEST SMA amantzio at dynacom line:926 LOG: duration: 0.731 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.917 EEST SMA amantzio at dynacom line:927 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.917 EEST SMA amantzio at dynacom line:928 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.917 EEST SMA amantzio at dynacom line:929 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.917 EEST SMA amantzio at dynacom line:930 LOG: duration: 0.044 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.917 EEST SMA amantzio at dynacom line:931 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.917 EEST SMA amantzio at dynacom line:932 LOG: duration: 0.064 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.917 EEST SMA amantzio at dynacom line:933 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.917 EEST SMA amantzio at dynacom line:934 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.917 EEST SMA amantzio at dynacom line:935 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.966 EEST SMA amantzio at dynacom line:936 LOG: duration: 49.352 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.967 EEST SMA amantzio at dynacom line:937 LOG: duration: 0.021 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.967 EEST SMA amantzio at dynacom line:938 LOG: duration: 0.023 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.967 EEST SMA amantzio at dynacom line:939 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:27.967 EEST SMA amantzio at dynacom line:940 LOG: duration: 0.060 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:28.119 EEST SMA amantzio at dynacom line:941 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:28.119 EEST SMA amantzio at dynacom line:942 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:28.120 EEST SMA amantzio at dynacom line:943 LOG: duration: 0.070 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:28.120 EEST SMA amantzio at dynacom line:944 LOG: duration: 0.093 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:28.120 EEST SMA amantzio at dynacom line:945 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.048 EEST SMA amantzio at dynacom line:946 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.048 EEST SMA amantzio at dynacom line:947 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.048 EEST SMA amantzio at dynacom line:948 LOG: duration: 0.173 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.052 EEST SMA amantzio at dynacom line:949 LOG: duration: 3.676 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.052 EEST SMA amantzio at dynacom line:950 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.755 EEST SMA amantzio at dynacom line:951 LOG: duration: 702.557 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.783 EEST SMA amantzio at dynacom line:952 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.783 EEST SMA amantzio at dynacom line:953 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.783 EEST SMA amantzio at dynacom line:954 LOG: duration: 0.012 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.783 EEST SMA amantzio at dynacom line:955 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.783 EEST SMA amantzio at dynacom line:956 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.783 EEST SMA amantzio at dynacom line:957 LOG: duration: 0.023 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.783 EEST SMA amantzio at dynacom line:958 LOG: duration: 0.039 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.783 EEST SMA amantzio at dynacom line:959 LOG: duration: 0.027 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.784 EEST SMA amantzio at dynacom line:960 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.784 EEST SMA amantzio at dynacom line:961 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.784 EEST SMA amantzio at dynacom line:962 LOG: duration: 0.050 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.784 EEST SMA amantzio at dynacom line:963 LOG: duration: 0.340 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.784 EEST SMA amantzio at dynacom line:964 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.784 EEST SMA amantzio at dynacom line:965 LOG: duration: 0.091 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.784 EEST SMA amantzio at dynacom line:966 LOG: duration: 0.113 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.784 EEST SMA amantzio at dynacom line:967 DETAIL: Parameters: $1 = 'sys4', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.784 EEST SMA amantzio at dynacom line:968 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.784 EEST SMA amantzio at dynacom line:969 DETAIL: Parameters: $1 = 'sys4', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.785 EEST SMA amantzio at dynacom line:970 LOG: duration: 0.406 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.785 EEST SMA amantzio at dynacom line:971 LOG: duration: 0.016 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.785 EEST SMA amantzio at dynacom line:972 LOG: duration: 0.013 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.785 EEST SMA amantzio at dynacom line:973 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.785 EEST SMA amantzio at dynacom line:974 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.785 EEST SMA amantzio at dynacom line:975 LOG: duration: 0.037 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767528,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.785 EEST SMA amantzio at dynacom line:976 LOG: duration: 0.107 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767528,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.785 EEST SMA amantzio at dynacom line:977 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767528,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.785 EEST SMA amantzio at dynacom line:978 LOG: duration: 0.026 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.792 EEST SMA amantzio at dynacom line:979 LOG: duration: 0.007 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.792 EEST SMA amantzio at dynacom line:980 LOG: duration: 0.005 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.792 EEST SMA amantzio at dynacom line:981 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.808 EEST SMA amantzio at dynacom line:982 LOG: duration: 15.827 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.900 EEST SMA amantzio at dynacom line:983 LOG: duration: 0.024 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.900 EEST SMA amantzio at dynacom line:984 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.900 EEST SMA amantzio at dynacom line:985 LOG: duration: 0.086 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.900 EEST SMA amantzio at dynacom line:986 LOG: duration: 0.120 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:32.900 EEST SMA amantzio at dynacom line:987 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:39.585 EEST SMA amantzio at dynacom line:988 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:39.585 EEST SMA amantzio at dynacom line:989 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:39.585 EEST SMA amantzio at dynacom line:990 LOG: duration: 0.165 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:39.589 EEST SMA amantzio at dynacom line:991 LOG: duration: 3.347 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:39.589 EEST SMA amantzio at dynacom line:992 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.200 EEST SMA amantzio at dynacom line:993 LOG: duration: 610.788 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.220 EEST SMA amantzio at dynacom line:994 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.220 EEST SMA amantzio at dynacom line:995 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.220 EEST SMA amantzio at dynacom line:996 LOG: duration: 0.015 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.220 EEST SMA amantzio at dynacom line:997 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.220 EEST SMA amantzio at dynacom line:998 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.220 EEST SMA amantzio at dynacom line:999 LOG: duration: 0.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.221 EEST SMA amantzio at dynacom line:1000 LOG: duration: 0.040 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.221 EEST SMA amantzio at dynacom line:1001 LOG: duration: 0.027 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.221 EEST SMA amantzio at dynacom line:1002 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.221 EEST SMA amantzio at dynacom line:1003 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.221 EEST SMA amantzio at dynacom line:1004 LOG: duration: 0.069 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.221 EEST SMA amantzio at dynacom line:1005 LOG: duration: 0.431 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.221 EEST SMA amantzio at dynacom line:1006 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.222 EEST SMA amantzio at dynacom line:1007 LOG: duration: 0.020 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.222 EEST SMA amantzio at dynacom line:1008 LOG: duration: 0.014 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.222 EEST SMA amantzio at dynacom line:1009 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.222 EEST SMA amantzio at dynacom line:1010 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.222 EEST SMA amantzio at dynacom line:1011 LOG: duration: 0.056 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.222 EEST SMA amantzio at dynacom line:1012 LOG: duration: 0.448 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.222 EEST SMA amantzio at dynacom line:1013 LOG: duration: 0.036 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.223 EEST SMA amantzio at dynacom line:1014 LOG: duration: 0.135 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.223 EEST SMA amantzio at dynacom line:1015 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.223 EEST SMA amantzio at dynacom line:1016 LOG: duration: 0.018 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.223 EEST SMA amantzio at dynacom line:1017 LOG: duration: 0.078 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.224 EEST SMA amantzio at dynacom line:1018 LOG: duration: 0.522 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.224 EEST SMA amantzio at dynacom line:1019 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.224 EEST SMA amantzio at dynacom line:1020 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.224 EEST SMA amantzio at dynacom line:1021 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.224 EEST SMA amantzio at dynacom line:1022 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.224 EEST SMA amantzio at dynacom line:1023 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.224 EEST SMA amantzio at dynacom line:1024 LOG: duration: 0.074 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.224 EEST SMA amantzio at dynacom line:1025 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.224 EEST SMA amantzio at dynacom line:1026 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.224 EEST SMA amantzio at dynacom line:1027 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.274 EEST SMA amantzio at dynacom line:1028 LOG: duration: 50.559 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.275 EEST SMA amantzio at dynacom line:1029 LOG: duration: 0.132 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.276 EEST SMA amantzio at dynacom line:1030 LOG: duration: 0.716 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.276 EEST SMA amantzio at dynacom line:1031 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.276 EEST SMA amantzio at dynacom line:1032 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.276 EEST SMA amantzio at dynacom line:1033 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.276 EEST SMA amantzio at dynacom line:1034 LOG: duration: 0.044 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.276 EEST SMA amantzio at dynacom line:1035 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.277 EEST SMA amantzio at dynacom line:1036 LOG: duration: 0.080 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.277 EEST SMA amantzio at dynacom line:1037 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.277 EEST SMA amantzio at dynacom line:1038 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.277 EEST SMA amantzio at dynacom line:1039 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.331 EEST SMA amantzio at dynacom line:1040 LOG: duration: 54.309 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.332 EEST SMA amantzio at dynacom line:1041 LOG: duration: 0.157 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.332 EEST SMA amantzio at dynacom line:1042 LOG: duration: 0.650 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.332 EEST SMA amantzio at dynacom line:1043 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.332 EEST SMA amantzio at dynacom line:1044 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.332 EEST SMA amantzio at dynacom line:1045 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.332 EEST SMA amantzio at dynacom line:1046 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.333 EEST SMA amantzio at dynacom line:1047 LOG: duration: 0.037 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.333 EEST SMA amantzio at dynacom line:1048 LOG: duration: 0.072 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.333 EEST SMA amantzio at dynacom line:1049 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.333 EEST SMA amantzio at dynacom line:1050 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.333 EEST SMA amantzio at dynacom line:1051 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.383 EEST SMA amantzio at dynacom line:1052 LOG: duration: 50.636 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.384 EEST SMA amantzio at dynacom line:1053 LOG: duration: 0.180 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.385 EEST SMA amantzio at dynacom line:1054 LOG: duration: 0.743 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.385 EEST SMA amantzio at dynacom line:1055 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.385 EEST SMA amantzio at dynacom line:1056 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.385 EEST SMA amantzio at dynacom line:1057 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.385 EEST SMA amantzio at dynacom line:1058 LOG: duration: 0.044 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.385 EEST SMA amantzio at dynacom line:1059 LOG: duration: 0.037 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.385 EEST SMA amantzio at dynacom line:1060 LOG: duration: 0.084 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.385 EEST SMA amantzio at dynacom line:1061 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.385 EEST SMA amantzio at dynacom line:1062 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.385 EEST SMA amantzio at dynacom line:1063 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.438 EEST SMA amantzio at dynacom line:1064 LOG: duration: 52.870 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.439 EEST SMA amantzio at dynacom line:1065 LOG: duration: 0.130 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.440 EEST SMA amantzio at dynacom line:1066 LOG: duration: 0.696 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.440 EEST SMA amantzio at dynacom line:1067 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.440 EEST SMA amantzio at dynacom line:1068 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.440 EEST SMA amantzio at dynacom line:1069 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.440 EEST SMA amantzio at dynacom line:1070 LOG: duration: 0.041 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.440 EEST SMA amantzio at dynacom line:1071 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.440 EEST SMA amantzio at dynacom line:1072 LOG: duration: 0.078 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.440 EEST SMA amantzio at dynacom line:1073 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.440 EEST SMA amantzio at dynacom line:1074 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.440 EEST SMA amantzio at dynacom line:1075 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.488 EEST SMA amantzio at dynacom line:1076 LOG: duration: 47.785 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.489 EEST SMA amantzio at dynacom line:1077 LOG: duration: 0.023 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.489 EEST SMA amantzio at dynacom line:1078 LOG: duration: 0.030 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.489 EEST SMA amantzio at dynacom line:1079 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.489 EEST SMA amantzio at dynacom line:1080 LOG: duration: 0.069 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.616 EEST SMA amantzio at dynacom line:1081 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.616 EEST SMA amantzio at dynacom line:1082 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.616 EEST SMA amantzio at dynacom line:1083 LOG: duration: 0.087 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.616 EEST SMA amantzio at dynacom line:1084 LOG: duration: 0.108 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:40.616 EEST SMA amantzio at dynacom line:1085 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:44.840 EEST SMA amantzio at dynacom line:1086 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:44.840 EEST SMA amantzio at dynacom line:1087 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:44.841 EEST SMA amantzio at dynacom line:1088 LOG: duration: 0.190 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:44.845 EEST SMA amantzio at dynacom line:1089 LOG: duration: 3.561 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:44.845 EEST SMA amantzio at dynacom line:1090 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.535 EEST SMA amantzio at dynacom line:1091 LOG: duration: 690.763 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.561 EEST SMA amantzio at dynacom line:1092 LOG: duration: 0.026 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.561 EEST SMA amantzio at dynacom line:1093 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.561 EEST SMA amantzio at dynacom line:1094 LOG: duration: 0.017 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.561 EEST SMA amantzio at dynacom line:1095 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.561 EEST SMA amantzio at dynacom line:1096 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.561 EEST SMA amantzio at dynacom line:1097 LOG: duration: 0.018 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.562 EEST SMA amantzio at dynacom line:1098 LOG: duration: 0.044 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.562 EEST SMA amantzio at dynacom line:1099 LOG: duration: 0.030 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.562 EEST SMA amantzio at dynacom line:1100 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.562 EEST SMA amantzio at dynacom line:1101 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.562 EEST SMA amantzio at dynacom line:1102 LOG: duration: 0.072 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.562 EEST SMA amantzio at dynacom line:1103 LOG: duration: 0.448 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.562 EEST SMA amantzio at dynacom line:1104 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.563 EEST SMA amantzio at dynacom line:1105 LOG: duration: 0.097 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.563 EEST SMA amantzio at dynacom line:1106 LOG: duration: 0.158 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.563 EEST SMA amantzio at dynacom line:1107 DETAIL: Parameters: $1 = 'sys5', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.563 EEST SMA amantzio at dynacom line:1108 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.563 EEST SMA amantzio at dynacom line:1109 DETAIL: Parameters: $1 = 'sys5', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.563 EEST SMA amantzio at dynacom line:1110 LOG: duration: 0.637 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.564 EEST SMA amantzio at dynacom line:1111 LOG: duration: 0.021 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.564 EEST SMA amantzio at dynacom line:1112 LOG: duration: 0.017 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.564 EEST SMA amantzio at dynacom line:1113 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.564 EEST SMA amantzio at dynacom line:1114 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.564 EEST SMA amantzio at dynacom line:1115 LOG: duration: 0.051 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767529,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.564 EEST SMA amantzio at dynacom line:1116 LOG: duration: 0.154 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767529,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.564 EEST SMA amantzio at dynacom line:1117 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767529,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.564 EEST SMA amantzio at dynacom line:1118 LOG: duration: 0.036 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.568 EEST SMA amantzio at dynacom line:1119 LOG: duration: 0.018 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.568 EEST SMA amantzio at dynacom line:1120 LOG: duration: 0.005 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.568 EEST SMA amantzio at dynacom line:1121 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.576 EEST SMA amantzio at dynacom line:1122 LOG: duration: 8.472 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.731 EEST SMA amantzio at dynacom line:1123 LOG: duration: 0.028 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.731 EEST SMA amantzio at dynacom line:1124 LOG: duration: 0.009 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.732 EEST SMA amantzio at dynacom line:1125 LOG: duration: 0.096 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.732 EEST SMA amantzio at dynacom line:1126 LOG: duration: 0.116 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:45.732 EEST SMA amantzio at dynacom line:1127 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.027 EEST SMA amantzio at dynacom line:1128 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.027 EEST SMA amantzio at dynacom line:1129 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.027 EEST SMA amantzio at dynacom line:1130 LOG: duration: 0.230 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.031 EEST SMA amantzio at dynacom line:1131 LOG: duration: 3.658 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.031 EEST SMA amantzio at dynacom line:1132 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.714 EEST SMA amantzio at dynacom line:1133 LOG: duration: 682.848 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.733 EEST SMA amantzio at dynacom line:1134 LOG: duration: 0.023 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.733 EEST SMA amantzio at dynacom line:1135 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.733 EEST SMA amantzio at dynacom line:1136 LOG: duration: 0.015 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.733 EEST SMA amantzio at dynacom line:1137 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.733 EEST SMA amantzio at dynacom line:1138 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.733 EEST SMA amantzio at dynacom line:1139 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.733 EEST SMA amantzio at dynacom line:1140 LOG: duration: 0.040 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.733 EEST SMA amantzio at dynacom line:1141 LOG: duration: 0.026 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.733 EEST SMA amantzio at dynacom line:1142 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.733 EEST SMA amantzio at dynacom line:1143 LOG: duration: 0.009 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.733 EEST SMA amantzio at dynacom line:1144 LOG: duration: 0.059 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.734 EEST SMA amantzio at dynacom line:1145 LOG: duration: 0.309 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.734 EEST SMA amantzio at dynacom line:1146 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.734 EEST SMA amantzio at dynacom line:1147 LOG: duration: 0.018 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.734 EEST SMA amantzio at dynacom line:1148 LOG: duration: 0.011 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.734 EEST SMA amantzio at dynacom line:1149 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.734 EEST SMA amantzio at dynacom line:1150 LOG: duration: 0.007 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.734 EEST SMA amantzio at dynacom line:1151 LOG: duration: 0.052 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.735 EEST SMA amantzio at dynacom line:1152 LOG: duration: 0.419 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.735 EEST SMA amantzio at dynacom line:1153 LOG: duration: 0.029 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.735 EEST SMA amantzio at dynacom line:1154 LOG: duration: 0.099 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.735 EEST SMA amantzio at dynacom line:1155 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.735 EEST SMA amantzio at dynacom line:1156 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.735 EEST SMA amantzio at dynacom line:1157 LOG: duration: 0.063 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.736 EEST SMA amantzio at dynacom line:1158 LOG: duration: 0.552 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.736 EEST SMA amantzio at dynacom line:1159 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.736 EEST SMA amantzio at dynacom line:1160 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.736 EEST SMA amantzio at dynacom line:1161 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.736 EEST SMA amantzio at dynacom line:1162 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.736 EEST SMA amantzio at dynacom line:1163 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.736 EEST SMA amantzio at dynacom line:1164 LOG: duration: 0.080 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.736 EEST SMA amantzio at dynacom line:1165 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.736 EEST SMA amantzio at dynacom line:1166 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.736 EEST SMA amantzio at dynacom line:1167 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.786 EEST SMA amantzio at dynacom line:1168 LOG: duration: 49.652 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.787 EEST SMA amantzio at dynacom line:1169 LOG: duration: 0.122 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.787 EEST SMA amantzio at dynacom line:1170 LOG: duration: 0.632 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.787 EEST SMA amantzio at dynacom line:1171 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.787 EEST SMA amantzio at dynacom line:1172 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.787 EEST SMA amantzio at dynacom line:1173 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.787 EEST SMA amantzio at dynacom line:1174 LOG: duration: 0.037 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.788 EEST SMA amantzio at dynacom line:1175 LOG: duration: 0.033 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.788 EEST SMA amantzio at dynacom line:1176 LOG: duration: 0.069 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.788 EEST SMA amantzio at dynacom line:1177 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.788 EEST SMA amantzio at dynacom line:1178 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.788 EEST SMA amantzio at dynacom line:1179 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.835 EEST SMA amantzio at dynacom line:1180 LOG: duration: 46.905 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.835 EEST SMA amantzio at dynacom line:1181 LOG: duration: 0.132 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.836 EEST SMA amantzio at dynacom line:1182 LOG: duration: 0.653 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.836 EEST SMA amantzio at dynacom line:1183 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.836 EEST SMA amantzio at dynacom line:1184 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.836 EEST SMA amantzio at dynacom line:1185 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.836 EEST SMA amantzio at dynacom line:1186 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.836 EEST SMA amantzio at dynacom line:1187 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.836 EEST SMA amantzio at dynacom line:1188 LOG: duration: 0.076 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.836 EEST SMA amantzio at dynacom line:1189 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.836 EEST SMA amantzio at dynacom line:1190 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.836 EEST SMA amantzio at dynacom line:1191 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.885 EEST SMA amantzio at dynacom line:1192 LOG: duration: 48.399 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.886 EEST SMA amantzio at dynacom line:1193 LOG: duration: 0.125 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.886 EEST SMA amantzio at dynacom line:1194 LOG: duration: 0.655 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.886 EEST SMA amantzio at dynacom line:1195 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.886 EEST SMA amantzio at dynacom line:1196 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.886 EEST SMA amantzio at dynacom line:1197 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.886 EEST SMA amantzio at dynacom line:1198 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.887 EEST SMA amantzio at dynacom line:1199 LOG: duration: 0.036 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.887 EEST SMA amantzio at dynacom line:1200 LOG: duration: 0.084 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.887 EEST SMA amantzio at dynacom line:1201 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.887 EEST SMA amantzio at dynacom line:1202 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.887 EEST SMA amantzio at dynacom line:1203 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.936 EEST SMA amantzio at dynacom line:1204 LOG: duration: 49.364 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.937 EEST SMA amantzio at dynacom line:1205 LOG: duration: 0.142 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.938 EEST SMA amantzio at dynacom line:1206 LOG: duration: 0.748 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.938 EEST SMA amantzio at dynacom line:1207 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.938 EEST SMA amantzio at dynacom line:1208 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.938 EEST SMA amantzio at dynacom line:1209 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.938 EEST SMA amantzio at dynacom line:1210 LOG: duration: 0.045 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.938 EEST SMA amantzio at dynacom line:1211 LOG: duration: 0.035 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.938 EEST SMA amantzio at dynacom line:1212 LOG: duration: 0.082 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.938 EEST SMA amantzio at dynacom line:1213 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.938 EEST SMA amantzio at dynacom line:1214 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.938 EEST SMA amantzio at dynacom line:1215 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.991 EEST SMA amantzio at dynacom line:1216 LOG: duration: 53.157 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.992 EEST SMA amantzio at dynacom line:1217 LOG: duration: 0.126 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.992 EEST SMA amantzio at dynacom line:1218 LOG: duration: 0.638 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.992 EEST SMA amantzio at dynacom line:1219 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.992 EEST SMA amantzio at dynacom line:1220 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.992 EEST SMA amantzio at dynacom line:1221 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.993 EEST SMA amantzio at dynacom line:1222 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.993 EEST SMA amantzio at dynacom line:1223 LOG: duration: 0.034 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.993 EEST SMA amantzio at dynacom line:1224 LOG: duration: 0.081 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.993 EEST SMA amantzio at dynacom line:1225 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.993 EEST SMA amantzio at dynacom line:1226 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:48.993 EEST SMA amantzio at dynacom line:1227 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:49.036 EEST SMA amantzio at dynacom line:1228 LOG: duration: 43.045 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:49.037 EEST SMA amantzio at dynacom line:1229 LOG: duration: 0.019 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:49.037 EEST SMA amantzio at dynacom line:1230 LOG: duration: 0.017 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:49.037 EEST SMA amantzio at dynacom line:1231 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:49.037 EEST SMA amantzio at dynacom line:1232 LOG: duration: 0.049 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:49.047 EEST SMA amantzio at dynacom line:1233 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:49.047 EEST SMA amantzio at dynacom line:1234 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:49.047 EEST SMA amantzio at dynacom line:1235 LOG: duration: 0.071 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:49.047 EEST SMA amantzio at dynacom line:1236 LOG: duration: 0.106 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:49.047 EEST SMA amantzio at dynacom line:1237 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.249 EEST SMA amantzio at dynacom line:1238 LOG: duration: 0.017 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.249 EEST SMA amantzio at dynacom line:1239 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.249 EEST SMA amantzio at dynacom line:1240 LOG: duration: 0.172 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.253 EEST SMA amantzio at dynacom line:1241 LOG: duration: 3.776 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.253 EEST SMA amantzio at dynacom line:1242 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.947 EEST SMA amantzio at dynacom line:1243 LOG: duration: 694.262 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.970 EEST SMA amantzio at dynacom line:1244 LOG: duration: 0.026 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.970 EEST SMA amantzio at dynacom line:1245 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.971 EEST SMA amantzio at dynacom line:1246 LOG: duration: 0.014 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.971 EEST SMA amantzio at dynacom line:1247 LOG: duration: 0.005 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.971 EEST SMA amantzio at dynacom line:1248 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.971 EEST SMA amantzio at dynacom line:1249 LOG: duration: 0.018 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.971 EEST SMA amantzio at dynacom line:1250 LOG: duration: 0.040 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.971 EEST SMA amantzio at dynacom line:1251 LOG: duration: 0.028 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.971 EEST SMA amantzio at dynacom line:1252 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.971 EEST SMA amantzio at dynacom line:1253 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.971 EEST SMA amantzio at dynacom line:1254 LOG: duration: 0.062 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.971 EEST SMA amantzio at dynacom line:1255 LOG: duration: 0.320 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.971 EEST SMA amantzio at dynacom line:1256 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.972 EEST SMA amantzio at dynacom line:1257 LOG: duration: 0.089 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.972 EEST SMA amantzio at dynacom line:1258 LOG: duration: 0.125 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.972 EEST SMA amantzio at dynacom line:1259 DETAIL: Parameters: $1 = 'sys6', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.972 EEST SMA amantzio at dynacom line:1260 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.972 EEST SMA amantzio at dynacom line:1261 DETAIL: Parameters: $1 = 'sys6', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.972 EEST SMA amantzio at dynacom line:1262 LOG: duration: 0.481 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.973 EEST SMA amantzio at dynacom line:1263 LOG: duration: 0.017 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.973 EEST SMA amantzio at dynacom line:1264 LOG: duration: 0.013 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.973 EEST SMA amantzio at dynacom line:1265 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.973 EEST SMA amantzio at dynacom line:1266 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.973 EEST SMA amantzio at dynacom line:1267 LOG: duration: 0.047 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767530,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.973 EEST SMA amantzio at dynacom line:1268 LOG: duration: 0.114 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767530,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.973 EEST SMA amantzio at dynacom line:1269 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767530,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.973 EEST SMA amantzio at dynacom line:1270 LOG: duration: 0.028 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.976 EEST SMA amantzio at dynacom line:1271 LOG: duration: 0.009 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.976 EEST SMA amantzio at dynacom line:1272 LOG: duration: 0.004 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.976 EEST SMA amantzio at dynacom line:1273 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.979 EEST SMA amantzio at dynacom line:1274 LOG: duration: 2.246 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.989 EEST SMA amantzio at dynacom line:1275 LOG: duration: 0.024 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.989 EEST SMA amantzio at dynacom line:1276 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.989 EEST SMA amantzio at dynacom line:1277 LOG: duration: 0.093 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.989 EEST SMA amantzio at dynacom line:1278 LOG: duration: 0.122 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:53.989 EEST SMA amantzio at dynacom line:1279 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.027 EEST SMA amantzio at dynacom line:1280 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.027 EEST SMA amantzio at dynacom line:1281 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.027 EEST SMA amantzio at dynacom line:1282 LOG: duration: 0.167 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.031 EEST SMA amantzio at dynacom line:1283 LOG: duration: 3.529 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.031 EEST SMA amantzio at dynacom line:1284 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.710 EEST SMA amantzio at dynacom line:1285 LOG: duration: 678.671 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.735 EEST SMA amantzio at dynacom line:1286 LOG: duration: 0.024 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.735 EEST SMA amantzio at dynacom line:1287 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1288 LOG: duration: 0.014 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1289 LOG: duration: 0.005 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1290 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1291 LOG: duration: 0.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1292 LOG: duration: 0.041 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1293 LOG: duration: 0.028 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1294 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1295 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1296 LOG: duration: 0.055 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1297 LOG: duration: 0.302 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1298 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1299 LOG: duration: 0.014 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1300 LOG: duration: 0.010 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1301 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.736 EEST SMA amantzio at dynacom line:1302 LOG: duration: 0.005 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.737 EEST SMA amantzio at dynacom line:1303 LOG: duration: 0.043 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.737 EEST SMA amantzio at dynacom line:1304 LOG: duration: 0.414 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.737 EEST SMA amantzio at dynacom line:1305 LOG: duration: 0.028 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.737 EEST SMA amantzio at dynacom line:1306 LOG: duration: 0.093 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.737 EEST SMA amantzio at dynacom line:1307 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.737 EEST SMA amantzio at dynacom line:1308 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.738 EEST SMA amantzio at dynacom line:1309 LOG: duration: 0.051 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.738 EEST SMA amantzio at dynacom line:1310 LOG: duration: 0.503 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.738 EEST SMA amantzio at dynacom line:1311 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.738 EEST SMA amantzio at dynacom line:1312 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.738 EEST SMA amantzio at dynacom line:1313 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.738 EEST SMA amantzio at dynacom line:1314 LOG: duration: 0.054 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.738 EEST SMA amantzio at dynacom line:1315 LOG: duration: 0.034 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.738 EEST SMA amantzio at dynacom line:1316 LOG: duration: 0.101 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.738 EEST SMA amantzio at dynacom line:1317 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.738 EEST SMA amantzio at dynacom line:1318 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.738 EEST SMA amantzio at dynacom line:1319 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.786 EEST SMA amantzio at dynacom line:1320 LOG: duration: 47.827 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.787 EEST SMA amantzio at dynacom line:1321 LOG: duration: 0.133 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.788 EEST SMA amantzio at dynacom line:1322 LOG: duration: 0.693 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.788 EEST SMA amantzio at dynacom line:1323 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.788 EEST SMA amantzio at dynacom line:1324 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.788 EEST SMA amantzio at dynacom line:1325 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.788 EEST SMA amantzio at dynacom line:1326 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.788 EEST SMA amantzio at dynacom line:1327 LOG: duration: 0.038 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.788 EEST SMA amantzio at dynacom line:1328 LOG: duration: 0.085 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.788 EEST SMA amantzio at dynacom line:1329 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.788 EEST SMA amantzio at dynacom line:1330 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.788 EEST SMA amantzio at dynacom line:1331 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.832 EEST SMA amantzio at dynacom line:1332 LOG: duration: 43.860 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.833 EEST SMA amantzio at dynacom line:1333 LOG: duration: 0.129 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.833 EEST SMA amantzio at dynacom line:1334 LOG: duration: 0.735 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.833 EEST SMA amantzio at dynacom line:1335 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.834 EEST SMA amantzio at dynacom line:1336 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.834 EEST SMA amantzio at dynacom line:1337 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.834 EEST SMA amantzio at dynacom line:1338 LOG: duration: 0.044 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.834 EEST SMA amantzio at dynacom line:1339 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.834 EEST SMA amantzio at dynacom line:1340 LOG: duration: 0.070 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.834 EEST SMA amantzio at dynacom line:1341 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.834 EEST SMA amantzio at dynacom line:1342 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.834 EEST SMA amantzio at dynacom line:1343 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.880 EEST SMA amantzio at dynacom line:1344 LOG: duration: 46.344 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.881 EEST SMA amantzio at dynacom line:1345 LOG: duration: 0.167 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.882 EEST SMA amantzio at dynacom line:1346 LOG: duration: 0.784 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.882 EEST SMA amantzio at dynacom line:1347 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.882 EEST SMA amantzio at dynacom line:1348 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.882 EEST SMA amantzio at dynacom line:1349 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.882 EEST SMA amantzio at dynacom line:1350 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.882 EEST SMA amantzio at dynacom line:1351 LOG: duration: 0.040 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.882 EEST SMA amantzio at dynacom line:1352 LOG: duration: 0.091 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.882 EEST SMA amantzio at dynacom line:1353 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.882 EEST SMA amantzio at dynacom line:1354 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.882 EEST SMA amantzio at dynacom line:1355 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.928 EEST SMA amantzio at dynacom line:1356 LOG: duration: 45.707 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.929 EEST SMA amantzio at dynacom line:1357 LOG: duration: 0.124 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.929 EEST SMA amantzio at dynacom line:1358 LOG: duration: 0.640 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.929 EEST SMA amantzio at dynacom line:1359 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.929 EEST SMA amantzio at dynacom line:1360 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.929 EEST SMA amantzio at dynacom line:1361 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.930 EEST SMA amantzio at dynacom line:1362 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.930 EEST SMA amantzio at dynacom line:1363 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.930 EEST SMA amantzio at dynacom line:1364 LOG: duration: 0.068 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.930 EEST SMA amantzio at dynacom line:1365 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.930 EEST SMA amantzio at dynacom line:1366 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.930 EEST SMA amantzio at dynacom line:1367 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.973 EEST SMA amantzio at dynacom line:1368 LOG: duration: 43.000 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.974 EEST SMA amantzio at dynacom line:1369 LOG: duration: 0.128 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.974 EEST SMA amantzio at dynacom line:1370 LOG: duration: 0.681 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.974 EEST SMA amantzio at dynacom line:1371 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.974 EEST SMA amantzio at dynacom line:1372 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.974 EEST SMA amantzio at dynacom line:1373 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.974 EEST SMA amantzio at dynacom line:1374 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.975 EEST SMA amantzio at dynacom line:1375 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.975 EEST SMA amantzio at dynacom line:1376 LOG: duration: 0.061 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.975 EEST SMA amantzio at dynacom line:1377 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.975 EEST SMA amantzio at dynacom line:1378 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:57.975 EEST SMA amantzio at dynacom line:1379 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.017 EEST SMA amantzio at dynacom line:1380 LOG: duration: 42.686 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.018 EEST SMA amantzio at dynacom line:1381 LOG: duration: 0.119 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.019 EEST SMA amantzio at dynacom line:1382 LOG: duration: 0.636 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.019 EEST SMA amantzio at dynacom line:1383 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.019 EEST SMA amantzio at dynacom line:1384 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.019 EEST SMA amantzio at dynacom line:1385 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.019 EEST SMA amantzio at dynacom line:1386 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.019 EEST SMA amantzio at dynacom line:1387 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.019 EEST SMA amantzio at dynacom line:1388 LOG: duration: 0.071 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.019 EEST SMA amantzio at dynacom line:1389 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.019 EEST SMA amantzio at dynacom line:1390 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.019 EEST SMA amantzio at dynacom line:1391 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.067 EEST SMA amantzio at dynacom line:1392 LOG: duration: 48.345 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.068 EEST SMA amantzio at dynacom line:1393 LOG: duration: 0.022 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.068 EEST SMA amantzio at dynacom line:1394 LOG: duration: 0.021 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.068 EEST SMA amantzio at dynacom line:1395 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.068 EEST SMA amantzio at dynacom line:1396 LOG: duration: 0.057 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.096 EEST SMA amantzio at dynacom line:1397 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.096 EEST SMA amantzio at dynacom line:1398 LOG: duration: 0.008 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.096 EEST SMA amantzio at dynacom line:1399 LOG: duration: 0.072 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.097 EEST SMA amantzio at dynacom line:1400 LOG: duration: 0.096 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:40:58.097 EEST SMA amantzio at dynacom line:1401 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:01.785 EEST SMA amantzio at dynacom line:1402 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:01.785 EEST SMA amantzio at dynacom line:1403 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:01.785 EEST SMA amantzio at dynacom line:1404 LOG: duration: 0.186 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:01.789 EEST SMA amantzio at dynacom line:1405 LOG: duration: 3.136 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:01.789 EEST SMA amantzio at dynacom line:1406 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.398 EEST SMA amantzio at dynacom line:1407 LOG: duration: 609.159 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.416 EEST SMA amantzio at dynacom line:1408 LOG: duration: 0.027 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.416 EEST SMA amantzio at dynacom line:1409 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.417 EEST SMA amantzio at dynacom line:1410 LOG: duration: 0.016 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.417 EEST SMA amantzio at dynacom line:1411 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.417 EEST SMA amantzio at dynacom line:1412 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.417 EEST SMA amantzio at dynacom line:1413 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.417 EEST SMA amantzio at dynacom line:1414 LOG: duration: 0.042 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.417 EEST SMA amantzio at dynacom line:1415 LOG: duration: 0.029 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.417 EEST SMA amantzio at dynacom line:1416 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.417 EEST SMA amantzio at dynacom line:1417 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.417 EEST SMA amantzio at dynacom line:1418 LOG: duration: 0.052 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.417 EEST SMA amantzio at dynacom line:1419 LOG: duration: 0.303 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.417 EEST SMA amantzio at dynacom line:1420 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.418 EEST SMA amantzio at dynacom line:1421 LOG: duration: 0.077 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.418 EEST SMA amantzio at dynacom line:1422 LOG: duration: 0.126 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.418 EEST SMA amantzio at dynacom line:1423 DETAIL: Parameters: $1 = 'sys7', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.418 EEST SMA amantzio at dynacom line:1424 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.418 EEST SMA amantzio at dynacom line:1425 DETAIL: Parameters: $1 = 'sys7', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.418 EEST SMA amantzio at dynacom line:1426 LOG: duration: 0.446 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.419 EEST SMA amantzio at dynacom line:1427 LOG: duration: 0.016 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.419 EEST SMA amantzio at dynacom line:1428 LOG: duration: 0.014 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.419 EEST SMA amantzio at dynacom line:1429 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.419 EEST SMA amantzio at dynacom line:1430 LOG: duration: 0.007 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.419 EEST SMA amantzio at dynacom line:1431 LOG: duration: 0.045 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767531,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.419 EEST SMA amantzio at dynacom line:1432 LOG: duration: 0.131 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767531,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.419 EEST SMA amantzio at dynacom line:1433 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767531,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.419 EEST SMA amantzio at dynacom line:1434 LOG: duration: 0.032 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.429 EEST SMA amantzio at dynacom line:1435 LOG: duration: 0.010 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.429 EEST SMA amantzio at dynacom line:1436 LOG: duration: 0.004 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.429 EEST SMA amantzio at dynacom line:1437 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.441 EEST SMA amantzio at dynacom line:1438 LOG: duration: 12.395 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.639 EEST SMA amantzio at dynacom line:1439 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.639 EEST SMA amantzio at dynacom line:1440 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.640 EEST SMA amantzio at dynacom line:1441 LOG: duration: 0.091 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.640 EEST SMA amantzio at dynacom line:1442 LOG: duration: 0.111 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:02.640 EEST SMA amantzio at dynacom line:1443 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:04.680 EEST SMA amantzio at dynacom line:1444 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:04.680 EEST SMA amantzio at dynacom line:1445 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:04.681 EEST SMA amantzio at dynacom line:1446 LOG: duration: 0.162 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:04.684 EEST SMA amantzio at dynacom line:1447 LOG: duration: 3.328 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:04.684 EEST SMA amantzio at dynacom line:1448 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.294 EEST SMA amantzio at dynacom line:1449 LOG: duration: 609.652 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1450 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1451 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1452 LOG: duration: 0.015 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1453 LOG: duration: 0.003 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1454 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1455 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1456 LOG: duration: 0.039 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1457 LOG: duration: 0.026 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1458 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1459 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1460 LOG: duration: 0.054 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1461 LOG: duration: 0.304 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.316 EEST SMA amantzio at dynacom line:1462 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.317 EEST SMA amantzio at dynacom line:1463 LOG: duration: 0.014 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.317 EEST SMA amantzio at dynacom line:1464 LOG: duration: 0.009 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.317 EEST SMA amantzio at dynacom line:1465 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.317 EEST SMA amantzio at dynacom line:1466 LOG: duration: 0.006 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.317 EEST SMA amantzio at dynacom line:1467 LOG: duration: 0.057 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.317 EEST SMA amantzio at dynacom line:1468 LOG: duration: 0.435 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.317 EEST SMA amantzio at dynacom line:1469 LOG: duration: 0.030 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.318 EEST SMA amantzio at dynacom line:1470 LOG: duration: 0.102 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.318 EEST SMA amantzio at dynacom line:1471 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.318 EEST SMA amantzio at dynacom line:1472 LOG: duration: 0.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.318 EEST SMA amantzio at dynacom line:1473 LOG: duration: 0.056 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.318 EEST SMA amantzio at dynacom line:1474 LOG: duration: 0.491 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.318 EEST SMA amantzio at dynacom line:1475 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.318 EEST SMA amantzio at dynacom line:1476 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.318 EEST SMA amantzio at dynacom line:1477 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.318 EEST SMA amantzio at dynacom line:1478 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.319 EEST SMA amantzio at dynacom line:1479 LOG: duration: 0.026 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.319 EEST SMA amantzio at dynacom line:1480 LOG: duration: 0.060 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.319 EEST SMA amantzio at dynacom line:1481 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.319 EEST SMA amantzio at dynacom line:1482 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.319 EEST SMA amantzio at dynacom line:1483 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.365 EEST SMA amantzio at dynacom line:1484 LOG: duration: 46.694 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.366 EEST SMA amantzio at dynacom line:1485 LOG: duration: 0.119 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.367 EEST SMA amantzio at dynacom line:1486 LOG: duration: 0.636 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.367 EEST SMA amantzio at dynacom line:1487 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.367 EEST SMA amantzio at dynacom line:1488 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.367 EEST SMA amantzio at dynacom line:1489 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.367 EEST SMA amantzio at dynacom line:1490 LOG: duration: 0.037 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.367 EEST SMA amantzio at dynacom line:1491 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.367 EEST SMA amantzio at dynacom line:1492 LOG: duration: 0.071 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.367 EEST SMA amantzio at dynacom line:1493 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.367 EEST SMA amantzio at dynacom line:1494 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.367 EEST SMA amantzio at dynacom line:1495 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.410 EEST SMA amantzio at dynacom line:1496 LOG: duration: 42.840 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.411 EEST SMA amantzio at dynacom line:1497 LOG: duration: 0.128 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.411 EEST SMA amantzio at dynacom line:1498 LOG: duration: 0.636 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.411 EEST SMA amantzio at dynacom line:1499 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.411 EEST SMA amantzio at dynacom line:1500 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.411 EEST SMA amantzio at dynacom line:1501 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.411 EEST SMA amantzio at dynacom line:1502 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.412 EEST SMA amantzio at dynacom line:1503 LOG: duration: 0.025 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.412 EEST SMA amantzio at dynacom line:1504 LOG: duration: 0.060 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.412 EEST SMA amantzio at dynacom line:1505 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.412 EEST SMA amantzio at dynacom line:1506 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.412 EEST SMA amantzio at dynacom line:1507 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.454 EEST SMA amantzio at dynacom line:1508 LOG: duration: 42.230 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.455 EEST SMA amantzio at dynacom line:1509 LOG: duration: 0.161 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.455 EEST SMA amantzio at dynacom line:1510 LOG: duration: 0.728 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.455 EEST SMA amantzio at dynacom line:1511 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.455 EEST SMA amantzio at dynacom line:1512 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.455 EEST SMA amantzio at dynacom line:1513 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.455 EEST SMA amantzio at dynacom line:1514 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.456 EEST SMA amantzio at dynacom line:1515 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.456 EEST SMA amantzio at dynacom line:1516 LOG: duration: 0.065 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.456 EEST SMA amantzio at dynacom line:1517 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.456 EEST SMA amantzio at dynacom line:1518 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.456 EEST SMA amantzio at dynacom line:1519 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.502 EEST SMA amantzio at dynacom line:1520 LOG: duration: 46.606 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.504 EEST SMA amantzio at dynacom line:1521 LOG: duration: 0.124 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.504 EEST SMA amantzio at dynacom line:1522 LOG: duration: 0.647 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.504 EEST SMA amantzio at dynacom line:1523 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.504 EEST SMA amantzio at dynacom line:1524 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.504 EEST SMA amantzio at dynacom line:1525 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.504 EEST SMA amantzio at dynacom line:1526 LOG: duration: 0.041 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.505 EEST SMA amantzio at dynacom line:1527 LOG: duration: 0.034 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.505 EEST SMA amantzio at dynacom line:1528 LOG: duration: 0.077 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.505 EEST SMA amantzio at dynacom line:1529 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.505 EEST SMA amantzio at dynacom line:1530 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.505 EEST SMA amantzio at dynacom line:1531 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.554 EEST SMA amantzio at dynacom line:1532 LOG: duration: 49.428 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.555 EEST SMA amantzio at dynacom line:1533 LOG: duration: 0.131 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.555 EEST SMA amantzio at dynacom line:1534 LOG: duration: 0.725 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.555 EEST SMA amantzio at dynacom line:1535 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.555 EEST SMA amantzio at dynacom line:1536 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.555 EEST SMA amantzio at dynacom line:1537 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.556 EEST SMA amantzio at dynacom line:1538 LOG: duration: 0.041 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.556 EEST SMA amantzio at dynacom line:1539 LOG: duration: 0.038 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.556 EEST SMA amantzio at dynacom line:1540 LOG: duration: 0.076 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.556 EEST SMA amantzio at dynacom line:1541 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.556 EEST SMA amantzio at dynacom line:1542 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.556 EEST SMA amantzio at dynacom line:1543 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.601 EEST SMA amantzio at dynacom line:1544 LOG: duration: 45.302 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.602 EEST SMA amantzio at dynacom line:1545 LOG: duration: 0.127 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.603 EEST SMA amantzio at dynacom line:1546 LOG: duration: 0.671 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.603 EEST SMA amantzio at dynacom line:1547 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.603 EEST SMA amantzio at dynacom line:1548 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.603 EEST SMA amantzio at dynacom line:1549 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.603 EEST SMA amantzio at dynacom line:1550 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.603 EEST SMA amantzio at dynacom line:1551 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.603 EEST SMA amantzio at dynacom line:1552 LOG: duration: 0.065 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.603 EEST SMA amantzio at dynacom line:1553 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.603 EEST SMA amantzio at dynacom line:1554 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.603 EEST SMA amantzio at dynacom line:1555 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.650 EEST SMA amantzio at dynacom line:1556 LOG: duration: 46.646 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.650 EEST SMA amantzio at dynacom line:1557 LOG: duration: 0.130 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.651 EEST SMA amantzio at dynacom line:1558 LOG: duration: 0.771 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.651 EEST SMA amantzio at dynacom line:1559 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.651 EEST SMA amantzio at dynacom line:1560 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.651 EEST SMA amantzio at dynacom line:1561 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.651 EEST SMA amantzio at dynacom line:1562 LOG: duration: 0.046 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.651 EEST SMA amantzio at dynacom line:1563 LOG: duration: 0.033 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.651 EEST SMA amantzio at dynacom line:1564 LOG: duration: 0.075 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.651 EEST SMA amantzio at dynacom line:1565 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.651 EEST SMA amantzio at dynacom line:1566 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.651 EEST SMA amantzio at dynacom line:1567 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.699 EEST SMA amantzio at dynacom line:1568 LOG: duration: 47.654 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.700 EEST SMA amantzio at dynacom line:1569 LOG: duration: 0.020 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.700 EEST SMA amantzio at dynacom line:1570 LOG: duration: 0.023 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.700 EEST SMA amantzio at dynacom line:1571 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.700 EEST SMA amantzio at dynacom line:1572 LOG: duration: 0.061 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.711 EEST SMA amantzio at dynacom line:1573 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.711 EEST SMA amantzio at dynacom line:1574 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.711 EEST SMA amantzio at dynacom line:1575 LOG: duration: 0.071 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.711 EEST SMA amantzio at dynacom line:1576 LOG: duration: 0.093 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:05.711 EEST SMA amantzio at dynacom line:1577 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.285 EEST SMA amantzio at dynacom line:1578 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.285 EEST SMA amantzio at dynacom line:1579 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.285 EEST SMA amantzio at dynacom line:1580 LOG: duration: 0.187 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.289 EEST SMA amantzio at dynacom line:1581 LOG: duration: 3.602 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.289 EEST SMA amantzio at dynacom line:1582 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.903 EEST SMA amantzio at dynacom line:1583 LOG: duration: 614.312 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.922 EEST SMA amantzio at dynacom line:1584 LOG: duration: 0.024 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.922 EEST SMA amantzio at dynacom line:1585 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.922 EEST SMA amantzio at dynacom line:1586 LOG: duration: 0.015 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.922 EEST SMA amantzio at dynacom line:1587 LOG: duration: 0.005 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.922 EEST SMA amantzio at dynacom line:1588 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.922 EEST SMA amantzio at dynacom line:1589 LOG: duration: 0.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.923 EEST SMA amantzio at dynacom line:1590 LOG: duration: 0.042 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.923 EEST SMA amantzio at dynacom line:1591 LOG: duration: 0.028 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.923 EEST SMA amantzio at dynacom line:1592 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.923 EEST SMA amantzio at dynacom line:1593 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.923 EEST SMA amantzio at dynacom line:1594 LOG: duration: 0.066 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.923 EEST SMA amantzio at dynacom line:1595 LOG: duration: 0.326 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.923 EEST SMA amantzio at dynacom line:1596 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.924 EEST SMA amantzio at dynacom line:1597 LOG: duration: 0.101 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.924 EEST SMA amantzio at dynacom line:1598 LOG: duration: 0.150 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.924 EEST SMA amantzio at dynacom line:1599 DETAIL: Parameters: $1 = 'sys8', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.924 EEST SMA amantzio at dynacom line:1600 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.924 EEST SMA amantzio at dynacom line:1601 DETAIL: Parameters: $1 = 'sys8', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.924 EEST SMA amantzio at dynacom line:1602 LOG: duration: 0.489 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.924 EEST SMA amantzio at dynacom line:1603 LOG: duration: 0.019 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.924 EEST SMA amantzio at dynacom line:1604 LOG: duration: 0.015 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.925 EEST SMA amantzio at dynacom line:1605 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.925 EEST SMA amantzio at dynacom line:1606 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.925 EEST SMA amantzio at dynacom line:1607 LOG: duration: 0.036 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767532,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.925 EEST SMA amantzio at dynacom line:1608 LOG: duration: 0.106 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767532,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.925 EEST SMA amantzio at dynacom line:1609 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767532,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.925 EEST SMA amantzio at dynacom line:1610 LOG: duration: 0.024 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.930 EEST SMA amantzio at dynacom line:1611 LOG: duration: 0.010 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.930 EEST SMA amantzio at dynacom line:1612 LOG: duration: 0.004 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.930 EEST SMA amantzio at dynacom line:1613 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.933 EEST SMA amantzio at dynacom line:1614 LOG: duration: 3.060 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.942 EEST SMA amantzio at dynacom line:1615 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.942 EEST SMA amantzio at dynacom line:1616 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.943 EEST SMA amantzio at dynacom line:1617 LOG: duration: 0.082 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.943 EEST SMA amantzio at dynacom line:1618 LOG: duration: 0.119 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:10.943 EEST SMA amantzio at dynacom line:1619 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:12.490 EEST SMA amantzio at dynacom line:1620 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:12.490 EEST SMA amantzio at dynacom line:1621 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:12.491 EEST SMA amantzio at dynacom line:1622 LOG: duration: 0.170 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:12.494 EEST SMA amantzio at dynacom line:1623 LOG: duration: 3.777 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:12.494 EEST SMA amantzio at dynacom line:1624 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.181 EEST SMA amantzio at dynacom line:1625 LOG: duration: 686.093 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.199 EEST SMA amantzio at dynacom line:1626 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.199 EEST SMA amantzio at dynacom line:1627 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.200 EEST SMA amantzio at dynacom line:1628 LOG: duration: 0.015 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.200 EEST SMA amantzio at dynacom line:1629 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.200 EEST SMA amantzio at dynacom line:1630 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.200 EEST SMA amantzio at dynacom line:1631 LOG: duration: 0.019 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.200 EEST SMA amantzio at dynacom line:1632 LOG: duration: 0.043 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.200 EEST SMA amantzio at dynacom line:1633 LOG: duration: 0.028 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.200 EEST SMA amantzio at dynacom line:1634 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.200 EEST SMA amantzio at dynacom line:1635 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.200 EEST SMA amantzio at dynacom line:1636 LOG: duration: 0.064 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.200 EEST SMA amantzio at dynacom line:1637 LOG: duration: 0.315 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.200 EEST SMA amantzio at dynacom line:1638 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.201 EEST SMA amantzio at dynacom line:1639 LOG: duration: 0.016 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.201 EEST SMA amantzio at dynacom line:1640 LOG: duration: 0.011 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.201 EEST SMA amantzio at dynacom line:1641 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.201 EEST SMA amantzio at dynacom line:1642 LOG: duration: 0.005 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.201 EEST SMA amantzio at dynacom line:1643 LOG: duration: 0.046 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.201 EEST SMA amantzio at dynacom line:1644 LOG: duration: 0.379 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.201 EEST SMA amantzio at dynacom line:1645 LOG: duration: 0.027 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.201 EEST SMA amantzio at dynacom line:1646 LOG: duration: 0.095 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.201 EEST SMA amantzio at dynacom line:1647 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.201 EEST SMA amantzio at dynacom line:1648 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.202 EEST SMA amantzio at dynacom line:1649 LOG: duration: 0.056 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.202 EEST SMA amantzio at dynacom line:1650 LOG: duration: 0.530 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.202 EEST SMA amantzio at dynacom line:1651 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.202 EEST SMA amantzio at dynacom line:1652 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.202 EEST SMA amantzio at dynacom line:1653 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.202 EEST SMA amantzio at dynacom line:1654 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.202 EEST SMA amantzio at dynacom line:1655 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.202 EEST SMA amantzio at dynacom line:1656 LOG: duration: 0.081 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.202 EEST SMA amantzio at dynacom line:1657 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.203 EEST SMA amantzio at dynacom line:1658 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.203 EEST SMA amantzio at dynacom line:1659 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.250 EEST SMA amantzio at dynacom line:1660 LOG: duration: 47.969 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.251 EEST SMA amantzio at dynacom line:1661 LOG: duration: 0.142 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.252 EEST SMA amantzio at dynacom line:1662 LOG: duration: 0.704 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.252 EEST SMA amantzio at dynacom line:1663 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.252 EEST SMA amantzio at dynacom line:1664 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.252 EEST SMA amantzio at dynacom line:1665 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.252 EEST SMA amantzio at dynacom line:1666 LOG: duration: 0.041 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.252 EEST SMA amantzio at dynacom line:1667 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.252 EEST SMA amantzio at dynacom line:1668 LOG: duration: 0.070 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.252 EEST SMA amantzio at dynacom line:1669 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.252 EEST SMA amantzio at dynacom line:1670 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.252 EEST SMA amantzio at dynacom line:1671 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.298 EEST SMA amantzio at dynacom line:1672 LOG: duration: 45.075 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.298 EEST SMA amantzio at dynacom line:1673 LOG: duration: 0.179 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.299 EEST SMA amantzio at dynacom line:1674 LOG: duration: 0.722 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.299 EEST SMA amantzio at dynacom line:1675 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.299 EEST SMA amantzio at dynacom line:1676 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.299 EEST SMA amantzio at dynacom line:1677 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.299 EEST SMA amantzio at dynacom line:1678 LOG: duration: 0.044 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.299 EEST SMA amantzio at dynacom line:1679 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.299 EEST SMA amantzio at dynacom line:1680 LOG: duration: 0.073 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.299 EEST SMA amantzio at dynacom line:1681 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.299 EEST SMA amantzio at dynacom line:1682 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.299 EEST SMA amantzio at dynacom line:1683 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.349 EEST SMA amantzio at dynacom line:1684 LOG: duration: 49.325 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.350 EEST SMA amantzio at dynacom line:1685 LOG: duration: 0.140 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.350 EEST SMA amantzio at dynacom line:1686 LOG: duration: 0.790 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.350 EEST SMA amantzio at dynacom line:1687 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.350 EEST SMA amantzio at dynacom line:1688 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.350 EEST SMA amantzio at dynacom line:1689 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.350 EEST SMA amantzio at dynacom line:1690 LOG: duration: 0.048 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.351 EEST SMA amantzio at dynacom line:1691 LOG: duration: 0.036 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.351 EEST SMA amantzio at dynacom line:1692 LOG: duration: 0.081 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.351 EEST SMA amantzio at dynacom line:1693 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.351 EEST SMA amantzio at dynacom line:1694 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.351 EEST SMA amantzio at dynacom line:1695 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.403 EEST SMA amantzio at dynacom line:1696 LOG: duration: 52.191 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.404 EEST SMA amantzio at dynacom line:1697 LOG: duration: 0.138 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.404 EEST SMA amantzio at dynacom line:1698 LOG: duration: 0.829 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.404 EEST SMA amantzio at dynacom line:1699 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.404 EEST SMA amantzio at dynacom line:1700 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.404 EEST SMA amantzio at dynacom line:1701 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.405 EEST SMA amantzio at dynacom line:1702 LOG: duration: 0.053 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.405 EEST SMA amantzio at dynacom line:1703 LOG: duration: 0.044 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.405 EEST SMA amantzio at dynacom line:1704 LOG: duration: 0.093 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.405 EEST SMA amantzio at dynacom line:1705 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.405 EEST SMA amantzio at dynacom line:1706 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.405 EEST SMA amantzio at dynacom line:1707 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.454 EEST SMA amantzio at dynacom line:1708 LOG: duration: 49.250 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.455 EEST SMA amantzio at dynacom line:1709 LOG: duration: 0.137 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.456 EEST SMA amantzio at dynacom line:1710 LOG: duration: 0.789 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.456 EEST SMA amantzio at dynacom line:1711 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.456 EEST SMA amantzio at dynacom line:1712 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.456 EEST SMA amantzio at dynacom line:1713 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.456 EEST SMA amantzio at dynacom line:1714 LOG: duration: 0.046 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.456 EEST SMA amantzio at dynacom line:1715 LOG: duration: 0.030 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.456 EEST SMA amantzio at dynacom line:1716 LOG: duration: 0.067 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.456 EEST SMA amantzio at dynacom line:1717 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.456 EEST SMA amantzio at dynacom line:1718 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.456 EEST SMA amantzio at dynacom line:1719 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.504 EEST SMA amantzio at dynacom line:1720 LOG: duration: 48.137 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.505 EEST SMA amantzio at dynacom line:1721 LOG: duration: 0.129 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.506 EEST SMA amantzio at dynacom line:1722 LOG: duration: 0.780 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.506 EEST SMA amantzio at dynacom line:1723 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.506 EEST SMA amantzio at dynacom line:1724 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.506 EEST SMA amantzio at dynacom line:1725 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.506 EEST SMA amantzio at dynacom line:1726 LOG: duration: 0.044 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.506 EEST SMA amantzio at dynacom line:1727 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.506 EEST SMA amantzio at dynacom line:1728 LOG: duration: 0.065 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.506 EEST SMA amantzio at dynacom line:1729 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.506 EEST SMA amantzio at dynacom line:1730 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.506 EEST SMA amantzio at dynacom line:1731 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.551 EEST SMA amantzio at dynacom line:1732 LOG: duration: 45.268 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.552 EEST SMA amantzio at dynacom line:1733 LOG: duration: 0.123 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.553 EEST SMA amantzio at dynacom line:1734 LOG: duration: 0.723 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.553 EEST SMA amantzio at dynacom line:1735 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.553 EEST SMA amantzio at dynacom line:1736 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.553 EEST SMA amantzio at dynacom line:1737 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.553 EEST SMA amantzio at dynacom line:1738 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.553 EEST SMA amantzio at dynacom line:1739 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.553 EEST SMA amantzio at dynacom line:1740 LOG: duration: 0.061 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.553 EEST SMA amantzio at dynacom line:1741 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.553 EEST SMA amantzio at dynacom line:1742 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.553 EEST SMA amantzio at dynacom line:1743 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.596 EEST SMA amantzio at dynacom line:1744 LOG: duration: 42.904 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.596 EEST SMA amantzio at dynacom line:1745 LOG: duration: 0.133 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.597 EEST SMA amantzio at dynacom line:1746 LOG: duration: 0.731 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.597 EEST SMA amantzio at dynacom line:1747 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.597 EEST SMA amantzio at dynacom line:1748 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.597 EEST SMA amantzio at dynacom line:1749 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.597 EEST SMA amantzio at dynacom line:1750 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.598 EEST SMA amantzio at dynacom line:1751 LOG: duration: 0.030 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.598 EEST SMA amantzio at dynacom line:1752 LOG: duration: 0.069 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.598 EEST SMA amantzio at dynacom line:1753 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.598 EEST SMA amantzio at dynacom line:1754 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.598 EEST SMA amantzio at dynacom line:1755 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.640 EEST SMA amantzio at dynacom line:1756 LOG: duration: 42.847 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.641 EEST SMA amantzio at dynacom line:1757 LOG: duration: 0.017 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.641 EEST SMA amantzio at dynacom line:1758 LOG: duration: 0.016 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.641 EEST SMA amantzio at dynacom line:1759 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.641 EEST SMA amantzio at dynacom line:1760 LOG: duration: 0.049 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.653 EEST SMA amantzio at dynacom line:1761 LOG: duration: 0.023 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.653 EEST SMA amantzio at dynacom line:1762 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.653 EEST SMA amantzio at dynacom line:1763 LOG: duration: 0.073 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.653 EEST SMA amantzio at dynacom line:1764 LOG: duration: 0.098 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:13.653 EEST SMA amantzio at dynacom line:1765 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:17.362 EEST SMA amantzio at dynacom line:1766 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:17.362 EEST SMA amantzio at dynacom line:1767 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:17.363 EEST SMA amantzio at dynacom line:1768 LOG: duration: 0.224 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:17.366 EEST SMA amantzio at dynacom line:1769 LOG: duration: 3.740 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:17.366 EEST SMA amantzio at dynacom line:1770 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.051 EEST SMA amantzio at dynacom line:1771 LOG: duration: 684.175 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.080 EEST SMA amantzio at dynacom line:1772 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.080 EEST SMA amantzio at dynacom line:1773 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.081 EEST SMA amantzio at dynacom line:1774 LOG: duration: 0.011 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.081 EEST SMA amantzio at dynacom line:1775 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.081 EEST SMA amantzio at dynacom line:1776 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.081 EEST SMA amantzio at dynacom line:1777 LOG: duration: 0.022 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.081 EEST SMA amantzio at dynacom line:1778 LOG: duration: 0.039 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.081 EEST SMA amantzio at dynacom line:1779 LOG: duration: 0.030 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.081 EEST SMA amantzio at dynacom line:1780 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.081 EEST SMA amantzio at dynacom line:1781 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.081 EEST SMA amantzio at dynacom line:1782 LOG: duration: 0.057 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.081 EEST SMA amantzio at dynacom line:1783 LOG: duration: 0.355 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.081 EEST SMA amantzio at dynacom line:1784 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.082 EEST SMA amantzio at dynacom line:1785 LOG: duration: 0.085 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.082 EEST SMA amantzio at dynacom line:1786 LOG: duration: 0.129 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.082 EEST SMA amantzio at dynacom line:1787 DETAIL: Parameters: $1 = 'sys9', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.082 EEST SMA amantzio at dynacom line:1788 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.082 EEST SMA amantzio at dynacom line:1789 DETAIL: Parameters: $1 = 'sys9', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.082 EEST SMA amantzio at dynacom line:1790 LOG: duration: 0.429 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.083 EEST SMA amantzio at dynacom line:1791 LOG: duration: 0.018 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.083 EEST SMA amantzio at dynacom line:1792 LOG: duration: 0.014 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.083 EEST SMA amantzio at dynacom line:1793 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.083 EEST SMA amantzio at dynacom line:1794 LOG: duration: 0.007 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.083 EEST SMA amantzio at dynacom line:1795 LOG: duration: 0.036 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767533,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.083 EEST SMA amantzio at dynacom line:1796 LOG: duration: 0.104 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767533,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.083 EEST SMA amantzio at dynacom line:1797 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767533,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.083 EEST SMA amantzio at dynacom line:1798 LOG: duration: 0.025 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.086 EEST SMA amantzio at dynacom line:1799 LOG: duration: 0.008 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.086 EEST SMA amantzio at dynacom line:1800 LOG: duration: 0.004 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.086 EEST SMA amantzio at dynacom line:1801 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.088 EEST SMA amantzio at dynacom line:1802 LOG: duration: 2.294 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.186 EEST SMA amantzio at dynacom line:1803 LOG: duration: 0.023 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.186 EEST SMA amantzio at dynacom line:1804 LOG: duration: 0.008 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.186 EEST SMA amantzio at dynacom line:1805 LOG: duration: 0.076 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.186 EEST SMA amantzio at dynacom line:1806 LOG: duration: 0.096 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:18.186 EEST SMA amantzio at dynacom line:1807 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:19.826 EEST SMA amantzio at dynacom line:1808 LOG: duration: 0.029 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:19.826 EEST SMA amantzio at dynacom line:1809 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:19.827 EEST SMA amantzio at dynacom line:1810 LOG: duration: 0.183 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:19.830 EEST SMA amantzio at dynacom line:1811 LOG: duration: 3.131 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:19.830 EEST SMA amantzio at dynacom line:1812 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.443 EEST SMA amantzio at dynacom line:1813 LOG: duration: 613.116 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.464 EEST SMA amantzio at dynacom line:1814 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.464 EEST SMA amantzio at dynacom line:1815 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.465 EEST SMA amantzio at dynacom line:1816 LOG: duration: 0.016 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.465 EEST SMA amantzio at dynacom line:1817 LOG: duration: 0.005 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.465 EEST SMA amantzio at dynacom line:1818 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.465 EEST SMA amantzio at dynacom line:1819 LOG: duration: 0.016 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.465 EEST SMA amantzio at dynacom line:1820 LOG: duration: 0.049 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.465 EEST SMA amantzio at dynacom line:1821 LOG: duration: 0.031 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.465 EEST SMA amantzio at dynacom line:1822 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.465 EEST SMA amantzio at dynacom line:1823 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.465 EEST SMA amantzio at dynacom line:1824 LOG: duration: 0.064 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.465 EEST SMA amantzio at dynacom line:1825 LOG: duration: 0.307 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.465 EEST SMA amantzio at dynacom line:1826 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.465 EEST SMA amantzio at dynacom line:1827 LOG: duration: 0.014 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.466 EEST SMA amantzio at dynacom line:1828 LOG: duration: 0.010 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.466 EEST SMA amantzio at dynacom line:1829 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.466 EEST SMA amantzio at dynacom line:1830 LOG: duration: 0.006 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.466 EEST SMA amantzio at dynacom line:1831 LOG: duration: 0.054 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.466 EEST SMA amantzio at dynacom line:1832 LOG: duration: 0.460 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.466 EEST SMA amantzio at dynacom line:1833 LOG: duration: 0.027 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.466 EEST SMA amantzio at dynacom line:1834 LOG: duration: 0.096 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.466 EEST SMA amantzio at dynacom line:1835 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.466 EEST SMA amantzio at dynacom line:1836 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.467 EEST SMA amantzio at dynacom line:1837 LOG: duration: 0.062 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.467 EEST SMA amantzio at dynacom line:1838 LOG: duration: 0.549 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.467 EEST SMA amantzio at dynacom line:1839 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.467 EEST SMA amantzio at dynacom line:1840 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.467 EEST SMA amantzio at dynacom line:1841 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.467 EEST SMA amantzio at dynacom line:1842 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.468 EEST SMA amantzio at dynacom line:1843 LOG: duration: 0.035 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.468 EEST SMA amantzio at dynacom line:1844 LOG: duration: 0.068 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.468 EEST SMA amantzio at dynacom line:1845 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.468 EEST SMA amantzio at dynacom line:1846 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.468 EEST SMA amantzio at dynacom line:1847 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.524 EEST SMA amantzio at dynacom line:1848 LOG: duration: 56.159 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.525 EEST SMA amantzio at dynacom line:1849 LOG: duration: 0.121 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.525 EEST SMA amantzio at dynacom line:1850 LOG: duration: 0.639 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.525 EEST SMA amantzio at dynacom line:1851 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.525 EEST SMA amantzio at dynacom line:1852 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.525 EEST SMA amantzio at dynacom line:1853 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.525 EEST SMA amantzio at dynacom line:1854 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.525 EEST SMA amantzio at dynacom line:1855 LOG: duration: 0.025 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.526 EEST SMA amantzio at dynacom line:1856 LOG: duration: 0.059 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.526 EEST SMA amantzio at dynacom line:1857 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.526 EEST SMA amantzio at dynacom line:1858 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.526 EEST SMA amantzio at dynacom line:1859 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.571 EEST SMA amantzio at dynacom line:1860 LOG: duration: 45.600 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.572 EEST SMA amantzio at dynacom line:1861 LOG: duration: 0.122 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.573 EEST SMA amantzio at dynacom line:1862 LOG: duration: 0.723 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.573 EEST SMA amantzio at dynacom line:1863 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.573 EEST SMA amantzio at dynacom line:1864 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.573 EEST SMA amantzio at dynacom line:1865 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.573 EEST SMA amantzio at dynacom line:1866 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.573 EEST SMA amantzio at dynacom line:1867 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.573 EEST SMA amantzio at dynacom line:1868 LOG: duration: 0.070 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.573 EEST SMA amantzio at dynacom line:1869 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.573 EEST SMA amantzio at dynacom line:1870 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.573 EEST SMA amantzio at dynacom line:1871 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.618 EEST SMA amantzio at dynacom line:1872 LOG: duration: 44.634 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.618 EEST SMA amantzio at dynacom line:1873 LOG: duration: 0.117 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.619 EEST SMA amantzio at dynacom line:1874 LOG: duration: 0.638 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.619 EEST SMA amantzio at dynacom line:1875 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.619 EEST SMA amantzio at dynacom line:1876 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.619 EEST SMA amantzio at dynacom line:1877 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.619 EEST SMA amantzio at dynacom line:1878 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.619 EEST SMA amantzio at dynacom line:1879 LOG: duration: 0.027 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.619 EEST SMA amantzio at dynacom line:1880 LOG: duration: 0.061 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.619 EEST SMA amantzio at dynacom line:1881 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.619 EEST SMA amantzio at dynacom line:1882 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.619 EEST SMA amantzio at dynacom line:1883 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.666 EEST SMA amantzio at dynacom line:1884 LOG: duration: 46.572 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.667 EEST SMA amantzio at dynacom line:1885 LOG: duration: 0.157 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.668 EEST SMA amantzio at dynacom line:1886 LOG: duration: 0.716 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.668 EEST SMA amantzio at dynacom line:1887 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.668 EEST SMA amantzio at dynacom line:1888 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.668 EEST SMA amantzio at dynacom line:1889 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.668 EEST SMA amantzio at dynacom line:1890 LOG: duration: 0.045 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.669 EEST SMA amantzio at dynacom line:1891 LOG: duration: 0.039 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.669 EEST SMA amantzio at dynacom line:1892 LOG: duration: 0.091 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.669 EEST SMA amantzio at dynacom line:1893 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.669 EEST SMA amantzio at dynacom line:1894 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.669 EEST SMA amantzio at dynacom line:1895 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.714 EEST SMA amantzio at dynacom line:1896 LOG: duration: 44.888 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.714 EEST SMA amantzio at dynacom line:1897 LOG: duration: 0.127 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.715 EEST SMA amantzio at dynacom line:1898 LOG: duration: 0.690 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.715 EEST SMA amantzio at dynacom line:1899 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.715 EEST SMA amantzio at dynacom line:1900 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.715 EEST SMA amantzio at dynacom line:1901 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.715 EEST SMA amantzio at dynacom line:1902 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.715 EEST SMA amantzio at dynacom line:1903 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.715 EEST SMA amantzio at dynacom line:1904 LOG: duration: 0.067 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.715 EEST SMA amantzio at dynacom line:1905 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.715 EEST SMA amantzio at dynacom line:1906 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.715 EEST SMA amantzio at dynacom line:1907 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.761 EEST SMA amantzio at dynacom line:1908 LOG: duration: 45.664 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.762 EEST SMA amantzio at dynacom line:1909 LOG: duration: 0.136 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.762 EEST SMA amantzio at dynacom line:1910 LOG: duration: 0.689 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.762 EEST SMA amantzio at dynacom line:1911 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.763 EEST SMA amantzio at dynacom line:1912 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.763 EEST SMA amantzio at dynacom line:1913 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.763 EEST SMA amantzio at dynacom line:1914 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.763 EEST SMA amantzio at dynacom line:1915 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.763 EEST SMA amantzio at dynacom line:1916 LOG: duration: 0.062 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.763 EEST SMA amantzio at dynacom line:1917 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.763 EEST SMA amantzio at dynacom line:1918 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.763 EEST SMA amantzio at dynacom line:1919 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.809 EEST SMA amantzio at dynacom line:1920 LOG: duration: 46.496 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.810 EEST SMA amantzio at dynacom line:1921 LOG: duration: 0.118 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.811 EEST SMA amantzio at dynacom line:1922 LOG: duration: 0.633 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.811 EEST SMA amantzio at dynacom line:1923 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.811 EEST SMA amantzio at dynacom line:1924 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.811 EEST SMA amantzio at dynacom line:1925 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.811 EEST SMA amantzio at dynacom line:1926 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.811 EEST SMA amantzio at dynacom line:1927 LOG: duration: 0.026 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.811 EEST SMA amantzio at dynacom line:1928 LOG: duration: 0.063 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.811 EEST SMA amantzio at dynacom line:1929 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.811 EEST SMA amantzio at dynacom line:1930 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.811 EEST SMA amantzio at dynacom line:1931 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.858 EEST SMA amantzio at dynacom line:1932 LOG: duration: 47.290 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.859 EEST SMA amantzio at dynacom line:1933 LOG: duration: 0.124 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.860 EEST SMA amantzio at dynacom line:1934 LOG: duration: 0.750 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.860 EEST SMA amantzio at dynacom line:1935 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.860 EEST SMA amantzio at dynacom line:1936 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.860 EEST SMA amantzio at dynacom line:1937 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.860 EEST SMA amantzio at dynacom line:1938 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.860 EEST SMA amantzio at dynacom line:1939 LOG: duration: 0.030 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.860 EEST SMA amantzio at dynacom line:1940 LOG: duration: 0.060 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.860 EEST SMA amantzio at dynacom line:1941 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.860 EEST SMA amantzio at dynacom line:1942 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.860 EEST SMA amantzio at dynacom line:1943 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.907 EEST SMA amantzio at dynacom line:1944 LOG: duration: 47.128 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.908 EEST SMA amantzio at dynacom line:1945 LOG: duration: 0.123 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.909 EEST SMA amantzio at dynacom line:1946 LOG: duration: 0.699 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.909 EEST SMA amantzio at dynacom line:1947 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.909 EEST SMA amantzio at dynacom line:1948 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.909 EEST SMA amantzio at dynacom line:1949 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.909 EEST SMA amantzio at dynacom line:1950 LOG: duration: 0.050 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.909 EEST SMA amantzio at dynacom line:1951 LOG: duration: 0.041 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.909 EEST SMA amantzio at dynacom line:1952 LOG: duration: 0.077 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.909 EEST SMA amantzio at dynacom line:1953 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.909 EEST SMA amantzio at dynacom line:1954 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.909 EEST SMA amantzio at dynacom line:1955 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.958 EEST SMA amantzio at dynacom line:1956 LOG: duration: 49.094 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.959 EEST SMA amantzio at dynacom line:1957 LOG: duration: 0.022 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.959 EEST SMA amantzio at dynacom line:1958 LOG: duration: 0.022 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.959 EEST SMA amantzio at dynacom line:1959 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.959 EEST SMA amantzio at dynacom line:1960 LOG: duration: 0.061 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.999 EEST SMA amantzio at dynacom line:1961 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:20.999 EEST SMA amantzio at dynacom line:1962 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:21.000 EEST SMA amantzio at dynacom line:1963 LOG: duration: 0.089 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:21.000 EEST SMA amantzio at dynacom line:1964 LOG: duration: 0.102 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:21.000 EEST SMA amantzio at dynacom line:1965 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.058 EEST SMA amantzio at dynacom line:1966 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.058 EEST SMA amantzio at dynacom line:1967 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.059 EEST SMA amantzio at dynacom line:1968 LOG: duration: 0.209 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.064 EEST SMA amantzio at dynacom line:1969 LOG: duration: 5.331 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.064 EEST SMA amantzio at dynacom line:1970 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.758 EEST SMA amantzio at dynacom line:1971 LOG: duration: 693.794 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.776 EEST SMA amantzio at dynacom line:1972 LOG: duration: 0.024 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.776 EEST SMA amantzio at dynacom line:1973 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.777 EEST SMA amantzio at dynacom line:1974 LOG: duration: 0.013 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.777 EEST SMA amantzio at dynacom line:1975 LOG: duration: 0.005 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.777 EEST SMA amantzio at dynacom line:1976 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.777 EEST SMA amantzio at dynacom line:1977 LOG: duration: 0.017 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.777 EEST SMA amantzio at dynacom line:1978 LOG: duration: 0.039 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.777 EEST SMA amantzio at dynacom line:1979 LOG: duration: 0.028 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.777 EEST SMA amantzio at dynacom line:1980 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.777 EEST SMA amantzio at dynacom line:1981 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.777 EEST SMA amantzio at dynacom line:1982 LOG: duration: 0.050 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.777 EEST SMA amantzio at dynacom line:1983 LOG: duration: 0.297 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.777 EEST SMA amantzio at dynacom line:1984 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.777 EEST SMA amantzio at dynacom line:1985 LOG: duration: 0.068 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.778 EEST SMA amantzio at dynacom line:1986 LOG: duration: 0.113 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.778 EEST SMA amantzio at dynacom line:1987 DETAIL: Parameters: $1 = 'sys10', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.778 EEST SMA amantzio at dynacom line:1988 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.778 EEST SMA amantzio at dynacom line:1989 DETAIL: Parameters: $1 = 'sys10', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.778 EEST SMA amantzio at dynacom line:1990 LOG: duration: 0.433 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.778 EEST SMA amantzio at dynacom line:1991 LOG: duration: 0.018 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.778 EEST SMA amantzio at dynacom line:1992 LOG: duration: 0.013 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.778 EEST SMA amantzio at dynacom line:1993 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.778 EEST SMA amantzio at dynacom line:1994 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.778 EEST SMA amantzio at dynacom line:1995 LOG: duration: 0.034 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767534,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.778 EEST SMA amantzio at dynacom line:1996 LOG: duration: 0.106 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767534,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.778 EEST SMA amantzio at dynacom line:1997 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767534,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.779 EEST SMA amantzio at dynacom line:1998 LOG: duration: 0.024 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.784 EEST SMA amantzio at dynacom line:1999 LOG: duration: 0.008 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.784 EEST SMA amantzio at dynacom line:2000 LOG: duration: 0.004 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.784 EEST SMA amantzio at dynacom line:2001 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:28.786 EEST SMA amantzio at dynacom line:2002 LOG: duration: 2.732 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:29.023 EEST SMA amantzio at dynacom line:2003 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:29.023 EEST SMA amantzio at dynacom line:2004 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:29.024 EEST SMA amantzio at dynacom line:2005 LOG: duration: 0.076 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:29.024 EEST SMA amantzio at dynacom line:2006 LOG: duration: 0.100 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:29.024 EEST SMA amantzio at dynacom line:2007 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.114 EEST SMA amantzio at dynacom line:2008 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.115 EEST SMA amantzio at dynacom line:2009 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.115 EEST SMA amantzio at dynacom line:2010 LOG: duration: 0.182 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.118 EEST SMA amantzio at dynacom line:2011 LOG: duration: 3.326 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.118 EEST SMA amantzio at dynacom line:2012 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.792 EEST SMA amantzio at dynacom line:2013 LOG: duration: 673.080 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.809 EEST SMA amantzio at dynacom line:2014 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.809 EEST SMA amantzio at dynacom line:2015 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.810 EEST SMA amantzio at dynacom line:2016 LOG: duration: 0.019 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.810 EEST SMA amantzio at dynacom line:2017 LOG: duration: 0.006 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.810 EEST SMA amantzio at dynacom line:2018 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.810 EEST SMA amantzio at dynacom line:2019 LOG: duration: 0.017 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.810 EEST SMA amantzio at dynacom line:2020 LOG: duration: 0.051 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.810 EEST SMA amantzio at dynacom line:2021 LOG: duration: 0.037 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.810 EEST SMA amantzio at dynacom line:2022 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.810 EEST SMA amantzio at dynacom line:2023 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.810 EEST SMA amantzio at dynacom line:2024 LOG: duration: 0.091 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.810 EEST SMA amantzio at dynacom line:2025 LOG: duration: 0.362 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.810 EEST SMA amantzio at dynacom line:2026 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.811 EEST SMA amantzio at dynacom line:2027 LOG: duration: 0.021 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.811 EEST SMA amantzio at dynacom line:2028 LOG: duration: 0.011 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.811 EEST SMA amantzio at dynacom line:2029 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.811 EEST SMA amantzio at dynacom line:2030 LOG: duration: 0.007 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.811 EEST SMA amantzio at dynacom line:2031 LOG: duration: 0.069 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.811 EEST SMA amantzio at dynacom line:2032 LOG: duration: 0.472 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.811 EEST SMA amantzio at dynacom line:2033 LOG: duration: 0.033 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.811 EEST SMA amantzio at dynacom line:2034 LOG: duration: 0.104 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.811 EEST SMA amantzio at dynacom line:2035 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.811 EEST SMA amantzio at dynacom line:2036 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.812 EEST SMA amantzio at dynacom line:2037 LOG: duration: 0.067 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.812 EEST SMA amantzio at dynacom line:2038 LOG: duration: 0.581 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.812 EEST SMA amantzio at dynacom line:2039 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.812 EEST SMA amantzio at dynacom line:2040 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.812 EEST SMA amantzio at dynacom line:2041 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.812 EEST SMA amantzio at dynacom line:2042 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.813 EEST SMA amantzio at dynacom line:2043 LOG: duration: 0.030 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.813 EEST SMA amantzio at dynacom line:2044 LOG: duration: 0.069 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.813 EEST SMA amantzio at dynacom line:2045 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.813 EEST SMA amantzio at dynacom line:2046 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.813 EEST SMA amantzio at dynacom line:2047 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.868 EEST SMA amantzio at dynacom line:2048 LOG: duration: 55.757 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.869 EEST SMA amantzio at dynacom line:2049 LOG: duration: 0.138 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.870 EEST SMA amantzio at dynacom line:2050 LOG: duration: 0.703 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.870 EEST SMA amantzio at dynacom line:2051 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.870 EEST SMA amantzio at dynacom line:2052 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.870 EEST SMA amantzio at dynacom line:2053 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.870 EEST SMA amantzio at dynacom line:2054 LOG: duration: 0.047 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.870 EEST SMA amantzio at dynacom line:2055 LOG: duration: 0.050 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.870 EEST SMA amantzio at dynacom line:2056 LOG: duration: 0.116 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.870 EEST SMA amantzio at dynacom line:2057 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.870 EEST SMA amantzio at dynacom line:2058 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.870 EEST SMA amantzio at dynacom line:2059 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.917 EEST SMA amantzio at dynacom line:2060 LOG: duration: 46.599 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.918 EEST SMA amantzio at dynacom line:2061 LOG: duration: 0.134 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.918 EEST SMA amantzio at dynacom line:2062 LOG: duration: 0.752 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.918 EEST SMA amantzio at dynacom line:2063 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.918 EEST SMA amantzio at dynacom line:2064 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.918 EEST SMA amantzio at dynacom line:2065 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.918 EEST SMA amantzio at dynacom line:2066 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.919 EEST SMA amantzio at dynacom line:2067 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.919 EEST SMA amantzio at dynacom line:2068 LOG: duration: 0.068 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.919 EEST SMA amantzio at dynacom line:2069 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.919 EEST SMA amantzio at dynacom line:2070 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.919 EEST SMA amantzio at dynacom line:2071 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.965 EEST SMA amantzio at dynacom line:2072 LOG: duration: 46.454 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.966 EEST SMA amantzio at dynacom line:2073 LOG: duration: 0.140 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.967 EEST SMA amantzio at dynacom line:2074 LOG: duration: 0.717 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.967 EEST SMA amantzio at dynacom line:2075 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.967 EEST SMA amantzio at dynacom line:2076 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.967 EEST SMA amantzio at dynacom line:2077 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.967 EEST SMA amantzio at dynacom line:2078 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.967 EEST SMA amantzio at dynacom line:2079 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.967 EEST SMA amantzio at dynacom line:2080 LOG: duration: 0.062 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.967 EEST SMA amantzio at dynacom line:2081 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.967 EEST SMA amantzio at dynacom line:2082 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:30.967 EEST SMA amantzio at dynacom line:2083 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.013 EEST SMA amantzio at dynacom line:2084 LOG: duration: 46.342 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.014 EEST SMA amantzio at dynacom line:2085 LOG: duration: 0.120 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.015 EEST SMA amantzio at dynacom line:2086 LOG: duration: 0.645 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.015 EEST SMA amantzio at dynacom line:2087 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.015 EEST SMA amantzio at dynacom line:2088 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.015 EEST SMA amantzio at dynacom line:2089 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.015 EEST SMA amantzio at dynacom line:2090 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.015 EEST SMA amantzio at dynacom line:2091 LOG: duration: 0.036 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.015 EEST SMA amantzio at dynacom line:2092 LOG: duration: 0.076 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.015 EEST SMA amantzio at dynacom line:2093 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.015 EEST SMA amantzio at dynacom line:2094 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.015 EEST SMA amantzio at dynacom line:2095 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.065 EEST SMA amantzio at dynacom line:2096 LOG: duration: 50.448 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.066 EEST SMA amantzio at dynacom line:2097 LOG: duration: 0.139 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.067 EEST SMA amantzio at dynacom line:2098 LOG: duration: 0.809 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.067 EEST SMA amantzio at dynacom line:2099 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.067 EEST SMA amantzio at dynacom line:2100 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.067 EEST SMA amantzio at dynacom line:2101 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.067 EEST SMA amantzio at dynacom line:2102 LOG: duration: 0.051 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.067 EEST SMA amantzio at dynacom line:2103 LOG: duration: 0.044 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.067 EEST SMA amantzio at dynacom line:2104 LOG: duration: 0.089 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.067 EEST SMA amantzio at dynacom line:2105 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.067 EEST SMA amantzio at dynacom line:2106 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.067 EEST SMA amantzio at dynacom line:2107 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.114 EEST SMA amantzio at dynacom line:2108 LOG: duration: 46.279 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.114 EEST SMA amantzio at dynacom line:2109 LOG: duration: 0.133 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.115 EEST SMA amantzio at dynacom line:2110 LOG: duration: 0.701 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.115 EEST SMA amantzio at dynacom line:2111 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.115 EEST SMA amantzio at dynacom line:2112 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.115 EEST SMA amantzio at dynacom line:2113 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.115 EEST SMA amantzio at dynacom line:2114 LOG: duration: 0.049 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.115 EEST SMA amantzio at dynacom line:2115 LOG: duration: 0.044 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.115 EEST SMA amantzio at dynacom line:2116 LOG: duration: 0.094 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.115 EEST SMA amantzio at dynacom line:2117 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.115 EEST SMA amantzio at dynacom line:2118 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.115 EEST SMA amantzio at dynacom line:2119 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.161 EEST SMA amantzio at dynacom line:2120 LOG: duration: 45.910 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.162 EEST SMA amantzio at dynacom line:2121 LOG: duration: 0.156 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.163 EEST SMA amantzio at dynacom line:2122 LOG: duration: 0.732 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.163 EEST SMA amantzio at dynacom line:2123 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.163 EEST SMA amantzio at dynacom line:2124 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.163 EEST SMA amantzio at dynacom line:2125 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.163 EEST SMA amantzio at dynacom line:2126 LOG: duration: 0.047 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.163 EEST SMA amantzio at dynacom line:2127 LOG: duration: 0.044 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.163 EEST SMA amantzio at dynacom line:2128 LOG: duration: 0.111 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.163 EEST SMA amantzio at dynacom line:2129 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.163 EEST SMA amantzio at dynacom line:2130 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.163 EEST SMA amantzio at dynacom line:2131 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.211 EEST SMA amantzio at dynacom line:2132 LOG: duration: 47.666 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.212 EEST SMA amantzio at dynacom line:2133 LOG: duration: 0.135 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.212 EEST SMA amantzio at dynacom line:2134 LOG: duration: 0.705 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.212 EEST SMA amantzio at dynacom line:2135 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.212 EEST SMA amantzio at dynacom line:2136 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.212 EEST SMA amantzio at dynacom line:2137 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.212 EEST SMA amantzio at dynacom line:2138 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.213 EEST SMA amantzio at dynacom line:2139 LOG: duration: 0.037 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.213 EEST SMA amantzio at dynacom line:2140 LOG: duration: 0.081 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.213 EEST SMA amantzio at dynacom line:2141 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.213 EEST SMA amantzio at dynacom line:2142 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.213 EEST SMA amantzio at dynacom line:2143 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.265 EEST SMA amantzio at dynacom line:2144 LOG: duration: 52.034 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.265 EEST SMA amantzio at dynacom line:2145 LOG: duration: 0.138 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.266 EEST SMA amantzio at dynacom line:2146 LOG: duration: 0.796 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.266 EEST SMA amantzio at dynacom line:2147 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.266 EEST SMA amantzio at dynacom line:2148 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.266 EEST SMA amantzio at dynacom line:2149 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.266 EEST SMA amantzio at dynacom line:2150 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.267 EEST SMA amantzio at dynacom line:2151 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.267 EEST SMA amantzio at dynacom line:2152 LOG: duration: 0.070 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.267 EEST SMA amantzio at dynacom line:2153 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.267 EEST SMA amantzio at dynacom line:2154 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.267 EEST SMA amantzio at dynacom line:2155 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.316 EEST SMA amantzio at dynacom line:2156 LOG: duration: 49.643 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.317 EEST SMA amantzio at dynacom line:2157 LOG: duration: 0.130 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.318 EEST SMA amantzio at dynacom line:2158 LOG: duration: 0.730 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.318 EEST SMA amantzio at dynacom line:2159 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.318 EEST SMA amantzio at dynacom line:2160 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.318 EEST SMA amantzio at dynacom line:2161 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.318 EEST SMA amantzio at dynacom line:2162 LOG: duration: 0.046 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.318 EEST SMA amantzio at dynacom line:2163 LOG: duration: 0.037 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.318 EEST SMA amantzio at dynacom line:2164 LOG: duration: 0.074 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.318 EEST SMA amantzio at dynacom line:2165 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.318 EEST SMA amantzio at dynacom line:2166 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.318 EEST SMA amantzio at dynacom line:2167 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.371 EEST SMA amantzio at dynacom line:2168 LOG: duration: 52.514 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.371 EEST SMA amantzio at dynacom line:2169 LOG: duration: 0.020 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.371 EEST SMA amantzio at dynacom line:2170 LOG: duration: 0.019 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.371 EEST SMA amantzio at dynacom line:2171 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.371 EEST SMA amantzio at dynacom line:2172 LOG: duration: 0.056 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.382 EEST SMA amantzio at dynacom line:2173 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.382 EEST SMA amantzio at dynacom line:2174 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.383 EEST SMA amantzio at dynacom line:2175 LOG: duration: 0.071 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.383 EEST SMA amantzio at dynacom line:2176 LOG: duration: 0.105 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:31.383 EEST SMA amantzio at dynacom line:2177 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:34.755 EEST SMA amantzio at dynacom line:2178 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:34.755 EEST SMA amantzio at dynacom line:2179 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:34.755 EEST SMA amantzio at dynacom line:2180 LOG: duration: 0.171 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:34.759 EEST SMA amantzio at dynacom line:2181 LOG: duration: 4.080 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:34.759 EEST SMA amantzio at dynacom line:2182 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.455 EEST SMA amantzio at dynacom line:2183 LOG: duration: 695.785 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.476 EEST SMA amantzio at dynacom line:2184 LOG: duration: 0.025 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.476 EEST SMA amantzio at dynacom line:2185 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.477 EEST SMA amantzio at dynacom line:2186 LOG: duration: 0.015 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.477 EEST SMA amantzio at dynacom line:2187 LOG: duration: 0.006 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.477 EEST SMA amantzio at dynacom line:2188 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.477 EEST SMA amantzio at dynacom line:2189 LOG: duration: 0.019 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.477 EEST SMA amantzio at dynacom line:2190 LOG: duration: 0.042 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.477 EEST SMA amantzio at dynacom line:2191 LOG: duration: 0.030 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.477 EEST SMA amantzio at dynacom line:2192 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.477 EEST SMA amantzio at dynacom line:2193 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.477 EEST SMA amantzio at dynacom line:2194 LOG: duration: 0.061 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.477 EEST SMA amantzio at dynacom line:2195 LOG: duration: 0.312 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.477 EEST SMA amantzio at dynacom line:2196 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.478 EEST SMA amantzio at dynacom line:2197 LOG: duration: 0.089 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.478 EEST SMA amantzio at dynacom line:2198 LOG: duration: 0.117 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.478 EEST SMA amantzio at dynacom line:2199 DETAIL: Parameters: $1 = 'sys11', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.478 EEST SMA amantzio at dynacom line:2200 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.478 EEST SMA amantzio at dynacom line:2201 DETAIL: Parameters: $1 = 'sys11', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.478 EEST SMA amantzio at dynacom line:2202 LOG: duration: 0.428 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.478 EEST SMA amantzio at dynacom line:2203 LOG: duration: 0.019 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.478 EEST SMA amantzio at dynacom line:2204 LOG: duration: 0.015 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.478 EEST SMA amantzio at dynacom line:2205 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.478 EEST SMA amantzio at dynacom line:2206 LOG: duration: 0.009 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.479 EEST SMA amantzio at dynacom line:2207 LOG: duration: 0.047 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767535,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.479 EEST SMA amantzio at dynacom line:2208 LOG: duration: 0.131 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767535,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.479 EEST SMA amantzio at dynacom line:2209 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767535,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.479 EEST SMA amantzio at dynacom line:2210 LOG: duration: 0.030 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.482 EEST SMA amantzio at dynacom line:2211 LOG: duration: 0.008 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.482 EEST SMA amantzio at dynacom line:2212 LOG: duration: 0.004 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.482 EEST SMA amantzio at dynacom line:2213 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.487 EEST SMA amantzio at dynacom line:2214 LOG: duration: 4.731 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.658 EEST SMA amantzio at dynacom line:2215 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.658 EEST SMA amantzio at dynacom line:2216 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.659 EEST SMA amantzio at dynacom line:2217 LOG: duration: 0.083 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.659 EEST SMA amantzio at dynacom line:2218 LOG: duration: 0.113 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:35.659 EEST SMA amantzio at dynacom line:2219 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.083 EEST SMA amantzio at dynacom line:2220 LOG: duration: 0.024 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.083 EEST SMA amantzio at dynacom line:2221 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.083 EEST SMA amantzio at dynacom line:2222 LOG: duration: 0.161 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.087 EEST SMA amantzio at dynacom line:2223 LOG: duration: 3.733 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.087 EEST SMA amantzio at dynacom line:2224 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.770 EEST SMA amantzio at dynacom line:2225 LOG: duration: 683.348 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.792 EEST SMA amantzio at dynacom line:2226 LOG: duration: 0.028 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.792 EEST SMA amantzio at dynacom line:2227 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.792 EEST SMA amantzio at dynacom line:2228 LOG: duration: 0.016 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.792 EEST SMA amantzio at dynacom line:2229 LOG: duration: 0.005 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.792 EEST SMA amantzio at dynacom line:2230 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.792 EEST SMA amantzio at dynacom line:2231 LOG: duration: 0.016 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.792 EEST SMA amantzio at dynacom line:2232 LOG: duration: 0.068 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.792 EEST SMA amantzio at dynacom line:2233 LOG: duration: 0.039 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.792 EEST SMA amantzio at dynacom line:2234 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.792 EEST SMA amantzio at dynacom line:2235 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.793 EEST SMA amantzio at dynacom line:2236 LOG: duration: 0.067 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.793 EEST SMA amantzio at dynacom line:2237 LOG: duration: 0.446 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.793 EEST SMA amantzio at dynacom line:2238 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.803 EEST SMA amantzio at dynacom line:2239 LOG: duration: 0.060 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.803 EEST SMA amantzio at dynacom line:2240 LOG: duration: 0.038 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.803 EEST SMA amantzio at dynacom line:2241 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.803 EEST SMA amantzio at dynacom line:2242 LOG: duration: 0.018 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.803 EEST SMA amantzio at dynacom line:2243 LOG: duration: 0.089 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.804 EEST SMA amantzio at dynacom line:2244 LOG: duration: 0.728 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.804 EEST SMA amantzio at dynacom line:2245 LOG: duration: 0.034 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.805 EEST SMA amantzio at dynacom line:2246 LOG: duration: 0.110 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.805 EEST SMA amantzio at dynacom line:2247 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.805 EEST SMA amantzio at dynacom line:2248 LOG: duration: 0.017 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.805 EEST SMA amantzio at dynacom line:2249 LOG: duration: 0.079 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.805 EEST SMA amantzio at dynacom line:2250 LOG: duration: 0.548 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.805 EEST SMA amantzio at dynacom line:2251 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.805 EEST SMA amantzio at dynacom line:2252 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.805 EEST SMA amantzio at dynacom line:2253 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.805 EEST SMA amantzio at dynacom line:2254 LOG: duration: 0.041 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.806 EEST SMA amantzio at dynacom line:2255 LOG: duration: 0.035 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.806 EEST SMA amantzio at dynacom line:2256 LOG: duration: 0.075 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.806 EEST SMA amantzio at dynacom line:2257 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.806 EEST SMA amantzio at dynacom line:2258 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.806 EEST SMA amantzio at dynacom line:2259 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.856 EEST SMA amantzio at dynacom line:2260 LOG: duration: 50.617 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.857 EEST SMA amantzio at dynacom line:2261 LOG: duration: 0.162 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.858 EEST SMA amantzio at dynacom line:2262 LOG: duration: 0.698 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.858 EEST SMA amantzio at dynacom line:2263 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.858 EEST SMA amantzio at dynacom line:2264 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.858 EEST SMA amantzio at dynacom line:2265 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.858 EEST SMA amantzio at dynacom line:2266 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.858 EEST SMA amantzio at dynacom line:2267 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.858 EEST SMA amantzio at dynacom line:2268 LOG: duration: 0.077 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.858 EEST SMA amantzio at dynacom line:2269 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.858 EEST SMA amantzio at dynacom line:2270 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.858 EEST SMA amantzio at dynacom line:2271 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.910 EEST SMA amantzio at dynacom line:2272 LOG: duration: 52.046 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.911 EEST SMA amantzio at dynacom line:2273 LOG: duration: 0.137 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.912 EEST SMA amantzio at dynacom line:2274 LOG: duration: 0.753 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.912 EEST SMA amantzio at dynacom line:2275 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.912 EEST SMA amantzio at dynacom line:2276 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.912 EEST SMA amantzio at dynacom line:2277 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.912 EEST SMA amantzio at dynacom line:2278 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.912 EEST SMA amantzio at dynacom line:2279 LOG: duration: 0.033 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.912 EEST SMA amantzio at dynacom line:2280 LOG: duration: 0.074 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.912 EEST SMA amantzio at dynacom line:2281 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.912 EEST SMA amantzio at dynacom line:2282 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.912 EEST SMA amantzio at dynacom line:2283 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.957 EEST SMA amantzio at dynacom line:2284 LOG: duration: 45.092 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.958 EEST SMA amantzio at dynacom line:2285 LOG: duration: 0.129 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.959 EEST SMA amantzio at dynacom line:2286 LOG: duration: 0.733 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.959 EEST SMA amantzio at dynacom line:2287 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.959 EEST SMA amantzio at dynacom line:2288 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.959 EEST SMA amantzio at dynacom line:2289 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.959 EEST SMA amantzio at dynacom line:2290 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.959 EEST SMA amantzio at dynacom line:2291 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.959 EEST SMA amantzio at dynacom line:2292 LOG: duration: 0.071 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.959 EEST SMA amantzio at dynacom line:2293 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.959 EEST SMA amantzio at dynacom line:2294 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:38.959 EEST SMA amantzio at dynacom line:2295 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.005 EEST SMA amantzio at dynacom line:2296 LOG: duration: 46.308 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.006 EEST SMA amantzio at dynacom line:2297 LOG: duration: 0.145 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.007 EEST SMA amantzio at dynacom line:2298 LOG: duration: 0.664 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.007 EEST SMA amantzio at dynacom line:2299 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.007 EEST SMA amantzio at dynacom line:2300 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.007 EEST SMA amantzio at dynacom line:2301 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.007 EEST SMA amantzio at dynacom line:2302 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.007 EEST SMA amantzio at dynacom line:2303 LOG: duration: 0.038 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.007 EEST SMA amantzio at dynacom line:2304 LOG: duration: 0.085 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.007 EEST SMA amantzio at dynacom line:2305 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.007 EEST SMA amantzio at dynacom line:2306 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.007 EEST SMA amantzio at dynacom line:2307 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.061 EEST SMA amantzio at dynacom line:2308 LOG: duration: 53.883 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.062 EEST SMA amantzio at dynacom line:2309 LOG: duration: 0.144 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.062 EEST SMA amantzio at dynacom line:2310 LOG: duration: 0.800 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.062 EEST SMA amantzio at dynacom line:2311 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.062 EEST SMA amantzio at dynacom line:2312 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.062 EEST SMA amantzio at dynacom line:2313 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.063 EEST SMA amantzio at dynacom line:2314 LOG: duration: 0.047 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.063 EEST SMA amantzio at dynacom line:2315 LOG: duration: 0.030 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.063 EEST SMA amantzio at dynacom line:2316 LOG: duration: 0.064 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.063 EEST SMA amantzio at dynacom line:2317 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.063 EEST SMA amantzio at dynacom line:2318 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.063 EEST SMA amantzio at dynacom line:2319 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.113 EEST SMA amantzio at dynacom line:2320 LOG: duration: 50.138 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.114 EEST SMA amantzio at dynacom line:2321 LOG: duration: 0.138 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.115 EEST SMA amantzio at dynacom line:2322 LOG: duration: 0.793 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.115 EEST SMA amantzio at dynacom line:2323 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.115 EEST SMA amantzio at dynacom line:2324 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.115 EEST SMA amantzio at dynacom line:2325 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.115 EEST SMA amantzio at dynacom line:2326 LOG: duration: 0.049 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.115 EEST SMA amantzio at dynacom line:2327 LOG: duration: 0.051 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.115 EEST SMA amantzio at dynacom line:2328 LOG: duration: 0.099 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.115 EEST SMA amantzio at dynacom line:2329 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.115 EEST SMA amantzio at dynacom line:2330 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.115 EEST SMA amantzio at dynacom line:2331 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.160 EEST SMA amantzio at dynacom line:2332 LOG: duration: 44.915 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.161 EEST SMA amantzio at dynacom line:2333 LOG: duration: 0.134 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.161 EEST SMA amantzio at dynacom line:2334 LOG: duration: 0.684 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.161 EEST SMA amantzio at dynacom line:2335 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.161 EEST SMA amantzio at dynacom line:2336 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.161 EEST SMA amantzio at dynacom line:2337 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.161 EEST SMA amantzio at dynacom line:2338 LOG: duration: 0.041 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.162 EEST SMA amantzio at dynacom line:2339 LOG: duration: 0.038 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.162 EEST SMA amantzio at dynacom line:2340 LOG: duration: 0.080 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.162 EEST SMA amantzio at dynacom line:2341 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.162 EEST SMA amantzio at dynacom line:2342 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.162 EEST SMA amantzio at dynacom line:2343 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.210 EEST SMA amantzio at dynacom line:2344 LOG: duration: 47.929 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.210 EEST SMA amantzio at dynacom line:2345 LOG: duration: 0.141 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.211 EEST SMA amantzio at dynacom line:2346 LOG: duration: 0.694 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.211 EEST SMA amantzio at dynacom line:2347 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.211 EEST SMA amantzio at dynacom line:2348 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.211 EEST SMA amantzio at dynacom line:2349 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.211 EEST SMA amantzio at dynacom line:2350 LOG: duration: 0.044 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.211 EEST SMA amantzio at dynacom line:2351 LOG: duration: 0.034 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.211 EEST SMA amantzio at dynacom line:2352 LOG: duration: 0.065 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.211 EEST SMA amantzio at dynacom line:2353 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.211 EEST SMA amantzio at dynacom line:2354 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.211 EEST SMA amantzio at dynacom line:2355 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.258 EEST SMA amantzio at dynacom line:2356 LOG: duration: 46.827 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.259 EEST SMA amantzio at dynacom line:2357 LOG: duration: 0.168 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.260 EEST SMA amantzio at dynacom line:2358 LOG: duration: 0.753 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.260 EEST SMA amantzio at dynacom line:2359 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.260 EEST SMA amantzio at dynacom line:2360 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.260 EEST SMA amantzio at dynacom line:2361 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.260 EEST SMA amantzio at dynacom line:2362 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.260 EEST SMA amantzio at dynacom line:2363 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.260 EEST SMA amantzio at dynacom line:2364 LOG: duration: 0.073 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.260 EEST SMA amantzio at dynacom line:2365 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.260 EEST SMA amantzio at dynacom line:2366 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.260 EEST SMA amantzio at dynacom line:2367 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.308 EEST SMA amantzio at dynacom line:2368 LOG: duration: 48.182 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.309 EEST SMA amantzio at dynacom line:2369 LOG: duration: 0.143 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.310 EEST SMA amantzio at dynacom line:2370 LOG: duration: 0.761 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.310 EEST SMA amantzio at dynacom line:2371 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.310 EEST SMA amantzio at dynacom line:2372 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.310 EEST SMA amantzio at dynacom line:2373 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.310 EEST SMA amantzio at dynacom line:2374 LOG: duration: 0.046 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.310 EEST SMA amantzio at dynacom line:2375 LOG: duration: 0.035 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.310 EEST SMA amantzio at dynacom line:2376 LOG: duration: 0.072 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.310 EEST SMA amantzio at dynacom line:2377 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.310 EEST SMA amantzio at dynacom line:2378 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.310 EEST SMA amantzio at dynacom line:2379 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.365 EEST SMA amantzio at dynacom line:2380 LOG: duration: 54.730 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.366 EEST SMA amantzio at dynacom line:2381 LOG: duration: 0.119 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.366 EEST SMA amantzio at dynacom line:2382 LOG: duration: 0.641 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.366 EEST SMA amantzio at dynacom line:2383 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.366 EEST SMA amantzio at dynacom line:2384 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.366 EEST SMA amantzio at dynacom line:2385 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.366 EEST SMA amantzio at dynacom line:2386 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.367 EEST SMA amantzio at dynacom line:2387 LOG: duration: 0.027 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.367 EEST SMA amantzio at dynacom line:2388 LOG: duration: 0.059 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.367 EEST SMA amantzio at dynacom line:2389 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.367 EEST SMA amantzio at dynacom line:2390 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.367 EEST SMA amantzio at dynacom line:2391 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.414 EEST SMA amantzio at dynacom line:2392 LOG: duration: 47.721 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.415 EEST SMA amantzio at dynacom line:2393 LOG: duration: 0.019 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.415 EEST SMA amantzio at dynacom line:2394 LOG: duration: 0.021 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.415 EEST SMA amantzio at dynacom line:2395 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.415 EEST SMA amantzio at dynacom line:2396 LOG: duration: 0.059 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.426 EEST SMA amantzio at dynacom line:2397 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.426 EEST SMA amantzio at dynacom line:2398 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.427 EEST SMA amantzio at dynacom line:2399 LOG: duration: 0.095 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.427 EEST SMA amantzio at dynacom line:2400 LOG: duration: 0.141 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:39.427 EEST SMA amantzio at dynacom line:2401 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:42.932 EEST SMA amantzio at dynacom line:2402 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:42.932 EEST SMA amantzio at dynacom line:2403 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:42.933 EEST SMA amantzio at dynacom line:2404 LOG: duration: 0.202 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:42.937 EEST SMA amantzio at dynacom line:2405 LOG: duration: 3.955 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:42.937 EEST SMA amantzio at dynacom line:2406 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.634 EEST SMA amantzio at dynacom line:2407 LOG: duration: 697.002 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.654 EEST SMA amantzio at dynacom line:2408 LOG: duration: 0.025 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.654 EEST SMA amantzio at dynacom line:2409 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.655 EEST SMA amantzio at dynacom line:2410 LOG: duration: 0.017 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.655 EEST SMA amantzio at dynacom line:2411 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.655 EEST SMA amantzio at dynacom line:2412 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.655 EEST SMA amantzio at dynacom line:2413 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.655 EEST SMA amantzio at dynacom line:2414 LOG: duration: 0.043 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.655 EEST SMA amantzio at dynacom line:2415 LOG: duration: 0.027 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.655 EEST SMA amantzio at dynacom line:2416 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.655 EEST SMA amantzio at dynacom line:2417 LOG: duration: 0.011 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.655 EEST SMA amantzio at dynacom line:2418 LOG: duration: 0.053 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.655 EEST SMA amantzio at dynacom line:2419 LOG: duration: 0.303 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.655 EEST SMA amantzio at dynacom line:2420 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.656 EEST SMA amantzio at dynacom line:2421 LOG: duration: 0.091 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.656 EEST SMA amantzio at dynacom line:2422 LOG: duration: 0.123 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.656 EEST SMA amantzio at dynacom line:2423 DETAIL: Parameters: $1 = 'sys12', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.656 EEST SMA amantzio at dynacom line:2424 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.656 EEST SMA amantzio at dynacom line:2425 DETAIL: Parameters: $1 = 'sys12', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.656 EEST SMA amantzio at dynacom line:2426 LOG: duration: 0.437 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.656 EEST SMA amantzio at dynacom line:2427 LOG: duration: 0.020 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.656 EEST SMA amantzio at dynacom line:2428 LOG: duration: 0.015 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.656 EEST SMA amantzio at dynacom line:2429 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.656 EEST SMA amantzio at dynacom line:2430 LOG: duration: 0.007 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.657 EEST SMA amantzio at dynacom line:2431 LOG: duration: 0.044 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767536,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.657 EEST SMA amantzio at dynacom line:2432 LOG: duration: 0.118 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767536,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.657 EEST SMA amantzio at dynacom line:2433 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767536,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.657 EEST SMA amantzio at dynacom line:2434 LOG: duration: 0.025 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.666 EEST SMA amantzio at dynacom line:2435 LOG: duration: 0.018 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.666 EEST SMA amantzio at dynacom line:2436 LOG: duration: 0.009 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.666 EEST SMA amantzio at dynacom line:2437 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.679 EEST SMA amantzio at dynacom line:2438 LOG: duration: 12.286 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.837 EEST SMA amantzio at dynacom line:2439 LOG: duration: 0.017 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.837 EEST SMA amantzio at dynacom line:2440 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.837 EEST SMA amantzio at dynacom line:2441 LOG: duration: 0.084 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.838 EEST SMA amantzio at dynacom line:2442 LOG: duration: 0.095 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:43.838 EEST SMA amantzio at dynacom line:2443 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:45.563 EEST SMA amantzio at dynacom line:2444 LOG: duration: 0.023 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:45.563 EEST SMA amantzio at dynacom line:2445 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:45.564 EEST SMA amantzio at dynacom line:2446 LOG: duration: 0.173 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:45.567 EEST SMA amantzio at dynacom line:2447 LOG: duration: 3.481 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:45.567 EEST SMA amantzio at dynacom line:2448 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.259 EEST SMA amantzio at dynacom line:2449 LOG: duration: 691.671 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.279 EEST SMA amantzio at dynacom line:2450 LOG: duration: 0.025 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.279 EEST SMA amantzio at dynacom line:2451 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.279 EEST SMA amantzio at dynacom line:2452 LOG: duration: 0.011 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.279 EEST SMA amantzio at dynacom line:2453 LOG: duration: 0.003 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.279 EEST SMA amantzio at dynacom line:2454 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.279 EEST SMA amantzio at dynacom line:2455 LOG: duration: 0.017 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.279 EEST SMA amantzio at dynacom line:2456 LOG: duration: 0.038 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.279 EEST SMA amantzio at dynacom line:2457 LOG: duration: 0.027 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.279 EEST SMA amantzio at dynacom line:2458 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.279 EEST SMA amantzio at dynacom line:2459 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.279 EEST SMA amantzio at dynacom line:2460 LOG: duration: 0.059 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.280 EEST SMA amantzio at dynacom line:2461 LOG: duration: 0.306 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.280 EEST SMA amantzio at dynacom line:2462 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.280 EEST SMA amantzio at dynacom line:2463 LOG: duration: 0.015 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.280 EEST SMA amantzio at dynacom line:2464 LOG: duration: 0.011 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.280 EEST SMA amantzio at dynacom line:2465 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.280 EEST SMA amantzio at dynacom line:2466 LOG: duration: 0.005 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.280 EEST SMA amantzio at dynacom line:2467 LOG: duration: 0.044 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.280 EEST SMA amantzio at dynacom line:2468 LOG: duration: 0.383 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.281 EEST SMA amantzio at dynacom line:2469 LOG: duration: 0.028 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.281 EEST SMA amantzio at dynacom line:2470 LOG: duration: 0.100 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.281 EEST SMA amantzio at dynacom line:2471 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.281 EEST SMA amantzio at dynacom line:2472 LOG: duration: 0.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.281 EEST SMA amantzio at dynacom line:2473 LOG: duration: 0.056 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.281 EEST SMA amantzio at dynacom line:2474 LOG: duration: 0.487 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.281 EEST SMA amantzio at dynacom line:2475 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.281 EEST SMA amantzio at dynacom line:2476 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.281 EEST SMA amantzio at dynacom line:2477 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.281 EEST SMA amantzio at dynacom line:2478 LOG: duration: 0.037 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.282 EEST SMA amantzio at dynacom line:2479 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.282 EEST SMA amantzio at dynacom line:2480 LOG: duration: 0.070 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.282 EEST SMA amantzio at dynacom line:2481 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.282 EEST SMA amantzio at dynacom line:2482 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.282 EEST SMA amantzio at dynacom line:2483 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.333 EEST SMA amantzio at dynacom line:2484 LOG: duration: 50.885 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.333 EEST SMA amantzio at dynacom line:2485 LOG: duration: 0.128 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.334 EEST SMA amantzio at dynacom line:2486 LOG: duration: 0.700 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.334 EEST SMA amantzio at dynacom line:2487 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.334 EEST SMA amantzio at dynacom line:2488 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.334 EEST SMA amantzio at dynacom line:2489 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.334 EEST SMA amantzio at dynacom line:2490 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.334 EEST SMA amantzio at dynacom line:2491 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.334 EEST SMA amantzio at dynacom line:2492 LOG: duration: 0.062 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.334 EEST SMA amantzio at dynacom line:2493 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.334 EEST SMA amantzio at dynacom line:2494 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.334 EEST SMA amantzio at dynacom line:2495 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.378 EEST SMA amantzio at dynacom line:2496 LOG: duration: 43.951 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.379 EEST SMA amantzio at dynacom line:2497 LOG: duration: 0.129 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.380 EEST SMA amantzio at dynacom line:2498 LOG: duration: 0.737 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.380 EEST SMA amantzio at dynacom line:2499 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.380 EEST SMA amantzio at dynacom line:2500 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.380 EEST SMA amantzio at dynacom line:2501 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.380 EEST SMA amantzio at dynacom line:2502 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.380 EEST SMA amantzio at dynacom line:2503 LOG: duration: 0.034 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.380 EEST SMA amantzio at dynacom line:2504 LOG: duration: 0.073 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.380 EEST SMA amantzio at dynacom line:2505 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.380 EEST SMA amantzio at dynacom line:2506 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.380 EEST SMA amantzio at dynacom line:2507 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.428 EEST SMA amantzio at dynacom line:2508 LOG: duration: 48.144 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.429 EEST SMA amantzio at dynacom line:2509 LOG: duration: 0.124 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.429 EEST SMA amantzio at dynacom line:2510 LOG: duration: 0.728 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.429 EEST SMA amantzio at dynacom line:2511 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.430 EEST SMA amantzio at dynacom line:2512 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.430 EEST SMA amantzio at dynacom line:2513 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.430 EEST SMA amantzio at dynacom line:2514 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.430 EEST SMA amantzio at dynacom line:2515 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.430 EEST SMA amantzio at dynacom line:2516 LOG: duration: 0.076 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.430 EEST SMA amantzio at dynacom line:2517 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.430 EEST SMA amantzio at dynacom line:2518 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.430 EEST SMA amantzio at dynacom line:2519 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.478 EEST SMA amantzio at dynacom line:2520 LOG: duration: 47.850 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.478 EEST SMA amantzio at dynacom line:2521 LOG: duration: 0.138 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.479 EEST SMA amantzio at dynacom line:2522 LOG: duration: 0.735 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.479 EEST SMA amantzio at dynacom line:2523 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.479 EEST SMA amantzio at dynacom line:2524 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.479 EEST SMA amantzio at dynacom line:2525 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.479 EEST SMA amantzio at dynacom line:2526 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.479 EEST SMA amantzio at dynacom line:2527 LOG: duration: 0.035 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.479 EEST SMA amantzio at dynacom line:2528 LOG: duration: 0.067 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.479 EEST SMA amantzio at dynacom line:2529 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.479 EEST SMA amantzio at dynacom line:2530 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.479 EEST SMA amantzio at dynacom line:2531 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.530 EEST SMA amantzio at dynacom line:2532 LOG: duration: 50.983 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.531 EEST SMA amantzio at dynacom line:2533 LOG: duration: 0.131 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.532 EEST SMA amantzio at dynacom line:2534 LOG: duration: 0.690 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.532 EEST SMA amantzio at dynacom line:2535 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.532 EEST SMA amantzio at dynacom line:2536 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.532 EEST SMA amantzio at dynacom line:2537 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.532 EEST SMA amantzio at dynacom line:2538 LOG: duration: 0.044 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.532 EEST SMA amantzio at dynacom line:2539 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.532 EEST SMA amantzio at dynacom line:2540 LOG: duration: 0.074 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.532 EEST SMA amantzio at dynacom line:2541 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.532 EEST SMA amantzio at dynacom line:2542 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.532 EEST SMA amantzio at dynacom line:2543 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.575 EEST SMA amantzio at dynacom line:2544 LOG: duration: 43.018 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.576 EEST SMA amantzio at dynacom line:2545 LOG: duration: 0.162 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.576 EEST SMA amantzio at dynacom line:2546 LOG: duration: 0.649 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.576 EEST SMA amantzio at dynacom line:2547 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.577 EEST SMA amantzio at dynacom line:2548 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.577 EEST SMA amantzio at dynacom line:2549 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.577 EEST SMA amantzio at dynacom line:2550 LOG: duration: 0.037 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.577 EEST SMA amantzio at dynacom line:2551 LOG: duration: 0.035 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.577 EEST SMA amantzio at dynacom line:2552 LOG: duration: 0.073 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.577 EEST SMA amantzio at dynacom line:2553 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.577 EEST SMA amantzio at dynacom line:2554 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.577 EEST SMA amantzio at dynacom line:2555 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.623 EEST SMA amantzio at dynacom line:2556 LOG: duration: 46.544 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.624 EEST SMA amantzio at dynacom line:2557 LOG: duration: 0.125 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.625 EEST SMA amantzio at dynacom line:2558 LOG: duration: 0.691 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.625 EEST SMA amantzio at dynacom line:2559 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.625 EEST SMA amantzio at dynacom line:2560 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.625 EEST SMA amantzio at dynacom line:2561 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.625 EEST SMA amantzio at dynacom line:2562 LOG: duration: 0.044 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.625 EEST SMA amantzio at dynacom line:2563 LOG: duration: 0.036 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.625 EEST SMA amantzio at dynacom line:2564 LOG: duration: 0.077 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.625 EEST SMA amantzio at dynacom line:2565 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.625 EEST SMA amantzio at dynacom line:2566 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.625 EEST SMA amantzio at dynacom line:2567 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.677 EEST SMA amantzio at dynacom line:2568 LOG: duration: 51.472 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.677 EEST SMA amantzio at dynacom line:2569 LOG: duration: 0.127 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.678 EEST SMA amantzio at dynacom line:2570 LOG: duration: 0.691 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.678 EEST SMA amantzio at dynacom line:2571 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.678 EEST SMA amantzio at dynacom line:2572 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.678 EEST SMA amantzio at dynacom line:2573 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.678 EEST SMA amantzio at dynacom line:2574 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.678 EEST SMA amantzio at dynacom line:2575 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.678 EEST SMA amantzio at dynacom line:2576 LOG: duration: 0.062 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.678 EEST SMA amantzio at dynacom line:2577 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.678 EEST SMA amantzio at dynacom line:2578 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.678 EEST SMA amantzio at dynacom line:2579 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.721 EEST SMA amantzio at dynacom line:2580 LOG: duration: 42.930 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.722 EEST SMA amantzio at dynacom line:2581 LOG: duration: 0.128 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.723 EEST SMA amantzio at dynacom line:2582 LOG: duration: 0.728 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.723 EEST SMA amantzio at dynacom line:2583 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.723 EEST SMA amantzio at dynacom line:2584 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.723 EEST SMA amantzio at dynacom line:2585 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.723 EEST SMA amantzio at dynacom line:2586 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.723 EEST SMA amantzio at dynacom line:2587 LOG: duration: 0.025 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.723 EEST SMA amantzio at dynacom line:2588 LOG: duration: 0.057 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.723 EEST SMA amantzio at dynacom line:2589 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.723 EEST SMA amantzio at dynacom line:2590 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.723 EEST SMA amantzio at dynacom line:2591 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.766 EEST SMA amantzio at dynacom line:2592 LOG: duration: 43.002 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.767 EEST SMA amantzio at dynacom line:2593 LOG: duration: 0.129 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.767 EEST SMA amantzio at dynacom line:2594 LOG: duration: 0.657 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.767 EEST SMA amantzio at dynacom line:2595 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.767 EEST SMA amantzio at dynacom line:2596 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.767 EEST SMA amantzio at dynacom line:2597 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.767 EEST SMA amantzio at dynacom line:2598 LOG: duration: 0.037 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.767 EEST SMA amantzio at dynacom line:2599 LOG: duration: 0.034 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.768 EEST SMA amantzio at dynacom line:2600 LOG: duration: 0.076 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.768 EEST SMA amantzio at dynacom line:2601 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.768 EEST SMA amantzio at dynacom line:2602 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.768 EEST SMA amantzio at dynacom line:2603 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.810 EEST SMA amantzio at dynacom line:2604 LOG: duration: 42.550 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.811 EEST SMA amantzio at dynacom line:2605 LOG: duration: 0.130 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.811 EEST SMA amantzio at dynacom line:2606 LOG: duration: 0.726 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.811 EEST SMA amantzio at dynacom line:2607 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.811 EEST SMA amantzio at dynacom line:2608 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.811 EEST SMA amantzio at dynacom line:2609 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.812 EEST SMA amantzio at dynacom line:2610 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.812 EEST SMA amantzio at dynacom line:2611 LOG: duration: 0.030 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.812 EEST SMA amantzio at dynacom line:2612 LOG: duration: 0.062 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.812 EEST SMA amantzio at dynacom line:2613 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.812 EEST SMA amantzio at dynacom line:2614 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.812 EEST SMA amantzio at dynacom line:2615 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.855 EEST SMA amantzio at dynacom line:2616 LOG: duration: 43.219 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.856 EEST SMA amantzio at dynacom line:2617 LOG: duration: 0.135 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.856 EEST SMA amantzio at dynacom line:2618 LOG: duration: 0.642 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.856 EEST SMA amantzio at dynacom line:2619 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.856 EEST SMA amantzio at dynacom line:2620 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.856 EEST SMA amantzio at dynacom line:2621 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.856 EEST SMA amantzio at dynacom line:2622 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.857 EEST SMA amantzio at dynacom line:2623 LOG: duration: 0.033 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.857 EEST SMA amantzio at dynacom line:2624 LOG: duration: 0.067 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.857 EEST SMA amantzio at dynacom line:2625 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.857 EEST SMA amantzio at dynacom line:2626 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.857 EEST SMA amantzio at dynacom line:2627 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.905 EEST SMA amantzio at dynacom line:2628 LOG: duration: 48.297 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.906 EEST SMA amantzio at dynacom line:2629 LOG: duration: 0.019 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.906 EEST SMA amantzio at dynacom line:2630 LOG: duration: 0.022 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.906 EEST SMA amantzio at dynacom line:2631 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.906 EEST SMA amantzio at dynacom line:2632 LOG: duration: 0.060 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.917 EEST SMA amantzio at dynacom line:2633 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.917 EEST SMA amantzio at dynacom line:2634 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.917 EEST SMA amantzio at dynacom line:2635 LOG: duration: 0.072 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.917 EEST SMA amantzio at dynacom line:2636 LOG: duration: 0.096 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:46.917 EEST SMA amantzio at dynacom line:2637 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:50.860 EEST SMA amantzio at dynacom line:2638 LOG: duration: 0.023 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:50.860 EEST SMA amantzio at dynacom line:2639 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:50.860 EEST SMA amantzio at dynacom line:2640 LOG: duration: 0.174 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:50.864 EEST SMA amantzio at dynacom line:2641 LOG: duration: 3.743 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:50.864 EEST SMA amantzio at dynacom line:2642 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.574 EEST SMA amantzio at dynacom line:2643 LOG: duration: 709.513 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.591 EEST SMA amantzio at dynacom line:2644 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.591 EEST SMA amantzio at dynacom line:2645 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.591 EEST SMA amantzio at dynacom line:2646 LOG: duration: 0.015 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.591 EEST SMA amantzio at dynacom line:2647 LOG: duration: 0.006 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.591 EEST SMA amantzio at dynacom line:2648 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.591 EEST SMA amantzio at dynacom line:2649 LOG: duration: 0.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.591 EEST SMA amantzio at dynacom line:2650 LOG: duration: 0.045 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.592 EEST SMA amantzio at dynacom line:2651 LOG: duration: 0.032 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.592 EEST SMA amantzio at dynacom line:2652 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.592 EEST SMA amantzio at dynacom line:2653 LOG: duration: 0.013 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.592 EEST SMA amantzio at dynacom line:2654 LOG: duration: 0.069 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.592 EEST SMA amantzio at dynacom line:2655 LOG: duration: 0.330 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.592 EEST SMA amantzio at dynacom line:2656 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.592 EEST SMA amantzio at dynacom line:2657 LOG: duration: 0.087 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.592 EEST SMA amantzio at dynacom line:2658 LOG: duration: 0.115 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.592 EEST SMA amantzio at dynacom line:2659 DETAIL: Parameters: $1 = 'sys13', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.592 EEST SMA amantzio at dynacom line:2660 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.592 EEST SMA amantzio at dynacom line:2661 DETAIL: Parameters: $1 = 'sys13', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.593 EEST SMA amantzio at dynacom line:2662 LOG: duration: 0.439 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.593 EEST SMA amantzio at dynacom line:2663 LOG: duration: 0.019 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.593 EEST SMA amantzio at dynacom line:2664 LOG: duration: 0.016 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.593 EEST SMA amantzio at dynacom line:2665 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.593 EEST SMA amantzio at dynacom line:2666 LOG: duration: 0.006 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.593 EEST SMA amantzio at dynacom line:2667 LOG: duration: 0.051 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767537,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.593 EEST SMA amantzio at dynacom line:2668 LOG: duration: 0.122 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767537,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.593 EEST SMA amantzio at dynacom line:2669 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767537,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.593 EEST SMA amantzio at dynacom line:2670 LOG: duration: 0.029 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.597 EEST SMA amantzio at dynacom line:2671 LOG: duration: 0.009 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.597 EEST SMA amantzio at dynacom line:2672 LOG: duration: 0.003 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.597 EEST SMA amantzio at dynacom line:2673 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.614 EEST SMA amantzio at dynacom line:2674 LOG: duration: 17.600 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.792 EEST SMA amantzio at dynacom line:2675 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.792 EEST SMA amantzio at dynacom line:2676 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.792 EEST SMA amantzio at dynacom line:2677 LOG: duration: 0.087 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.793 EEST SMA amantzio at dynacom line:2678 LOG: duration: 0.160 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:51.793 EEST SMA amantzio at dynacom line:2679 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:52.716 EEST SMA amantzio at dynacom line:2680 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:52.716 EEST SMA amantzio at dynacom line:2681 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:52.717 EEST SMA amantzio at dynacom line:2682 LOG: duration: 0.186 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:52.720 EEST SMA amantzio at dynacom line:2683 LOG: duration: 3.468 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:52.720 EEST SMA amantzio at dynacom line:2684 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.412 EEST SMA amantzio at dynacom line:2685 LOG: duration: 691.382 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.431 EEST SMA amantzio at dynacom line:2686 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.431 EEST SMA amantzio at dynacom line:2687 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.432 EEST SMA amantzio at dynacom line:2688 LOG: duration: 0.012 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.432 EEST SMA amantzio at dynacom line:2689 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.432 EEST SMA amantzio at dynacom line:2690 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.432 EEST SMA amantzio at dynacom line:2691 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.432 EEST SMA amantzio at dynacom line:2692 LOG: duration: 0.039 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.432 EEST SMA amantzio at dynacom line:2693 LOG: duration: 0.027 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.432 EEST SMA amantzio at dynacom line:2694 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.432 EEST SMA amantzio at dynacom line:2695 LOG: duration: 0.009 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.432 EEST SMA amantzio at dynacom line:2696 LOG: duration: 0.055 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.432 EEST SMA amantzio at dynacom line:2697 LOG: duration: 0.304 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.432 EEST SMA amantzio at dynacom line:2698 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.432 EEST SMA amantzio at dynacom line:2699 LOG: duration: 0.017 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.433 EEST SMA amantzio at dynacom line:2700 LOG: duration: 0.010 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.433 EEST SMA amantzio at dynacom line:2701 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.433 EEST SMA amantzio at dynacom line:2702 LOG: duration: 0.005 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.433 EEST SMA amantzio at dynacom line:2703 LOG: duration: 0.054 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.433 EEST SMA amantzio at dynacom line:2704 LOG: duration: 0.398 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.433 EEST SMA amantzio at dynacom line:2705 LOG: duration: 0.028 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.433 EEST SMA amantzio at dynacom line:2706 LOG: duration: 0.098 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.433 EEST SMA amantzio at dynacom line:2707 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.433 EEST SMA amantzio at dynacom line:2708 LOG: duration: 0.014 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.434 EEST SMA amantzio at dynacom line:2709 LOG: duration: 0.063 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.434 EEST SMA amantzio at dynacom line:2710 LOG: duration: 0.554 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.434 EEST SMA amantzio at dynacom line:2711 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.434 EEST SMA amantzio at dynacom line:2712 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.434 EEST SMA amantzio at dynacom line:2713 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.434 EEST SMA amantzio at dynacom line:2714 LOG: duration: 0.045 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.434 EEST SMA amantzio at dynacom line:2715 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.434 EEST SMA amantzio at dynacom line:2716 LOG: duration: 0.069 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.434 EEST SMA amantzio at dynacom line:2717 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.434 EEST SMA amantzio at dynacom line:2718 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.434 EEST SMA amantzio at dynacom line:2719 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.486 EEST SMA amantzio at dynacom line:2720 LOG: duration: 51.890 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.487 EEST SMA amantzio at dynacom line:2721 LOG: duration: 0.118 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.488 EEST SMA amantzio at dynacom line:2722 LOG: duration: 0.629 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.488 EEST SMA amantzio at dynacom line:2723 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.488 EEST SMA amantzio at dynacom line:2724 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.488 EEST SMA amantzio at dynacom line:2725 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.488 EEST SMA amantzio at dynacom line:2726 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.488 EEST SMA amantzio at dynacom line:2727 LOG: duration: 0.036 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.488 EEST SMA amantzio at dynacom line:2728 LOG: duration: 0.072 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.488 EEST SMA amantzio at dynacom line:2729 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.488 EEST SMA amantzio at dynacom line:2730 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.488 EEST SMA amantzio at dynacom line:2731 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.538 EEST SMA amantzio at dynacom line:2732 LOG: duration: 50.163 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.539 EEST SMA amantzio at dynacom line:2733 LOG: duration: 0.141 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.539 EEST SMA amantzio at dynacom line:2734 LOG: duration: 0.736 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.539 EEST SMA amantzio at dynacom line:2735 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.539 EEST SMA amantzio at dynacom line:2736 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.539 EEST SMA amantzio at dynacom line:2737 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.540 EEST SMA amantzio at dynacom line:2738 LOG: duration: 0.048 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.540 EEST SMA amantzio at dynacom line:2739 LOG: duration: 0.042 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.540 EEST SMA amantzio at dynacom line:2740 LOG: duration: 0.095 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.540 EEST SMA amantzio at dynacom line:2741 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.540 EEST SMA amantzio at dynacom line:2742 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.540 EEST SMA amantzio at dynacom line:2743 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.587 EEST SMA amantzio at dynacom line:2744 LOG: duration: 46.993 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.587 EEST SMA amantzio at dynacom line:2745 LOG: duration: 0.123 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.588 EEST SMA amantzio at dynacom line:2746 LOG: duration: 0.648 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.588 EEST SMA amantzio at dynacom line:2747 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.588 EEST SMA amantzio at dynacom line:2748 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.588 EEST SMA amantzio at dynacom line:2749 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.588 EEST SMA amantzio at dynacom line:2750 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.588 EEST SMA amantzio at dynacom line:2751 LOG: duration: 0.050 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.588 EEST SMA amantzio at dynacom line:2752 LOG: duration: 0.103 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.588 EEST SMA amantzio at dynacom line:2753 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.589 EEST SMA amantzio at dynacom line:2754 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.589 EEST SMA amantzio at dynacom line:2755 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.638 EEST SMA amantzio at dynacom line:2756 LOG: duration: 49.341 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.638 EEST SMA amantzio at dynacom line:2757 LOG: duration: 0.136 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.639 EEST SMA amantzio at dynacom line:2758 LOG: duration: 0.781 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.639 EEST SMA amantzio at dynacom line:2759 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.639 EEST SMA amantzio at dynacom line:2760 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.639 EEST SMA amantzio at dynacom line:2761 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.639 EEST SMA amantzio at dynacom line:2762 LOG: duration: 0.046 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.639 EEST SMA amantzio at dynacom line:2763 LOG: duration: 0.041 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.640 EEST SMA amantzio at dynacom line:2764 LOG: duration: 0.088 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.640 EEST SMA amantzio at dynacom line:2765 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.640 EEST SMA amantzio at dynacom line:2766 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.640 EEST SMA amantzio at dynacom line:2767 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.687 EEST SMA amantzio at dynacom line:2768 LOG: duration: 47.683 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.688 EEST SMA amantzio at dynacom line:2769 LOG: duration: 0.162 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.689 EEST SMA amantzio at dynacom line:2770 LOG: duration: 0.657 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.689 EEST SMA amantzio at dynacom line:2771 DETAIL: Parameters: $1 = '214767537'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.689 EEST SMA amantzio at dynacom line:2772 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.689 EEST SMA amantzio at dynacom line:2773 DETAIL: Parameters: $1 = '214767537'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.689 EEST SMA amantzio at dynacom line:2774 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.689 EEST SMA amantzio at dynacom line:2775 LOG: duration: 0.033 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.689 EEST SMA amantzio at dynacom line:2776 LOG: duration: 0.075 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.689 EEST SMA amantzio at dynacom line:2777 DETAIL: Parameters: $1 = '214767537'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.689 EEST SMA amantzio at dynacom line:2778 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.689 EEST SMA amantzio at dynacom line:2779 DETAIL: Parameters: $1 = '214767537'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.735 EEST SMA amantzio at dynacom line:2780 LOG: duration: 46.316 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.736 EEST SMA amantzio at dynacom line:2781 LOG: duration: 0.139 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.737 EEST SMA amantzio at dynacom line:2782 LOG: duration: 0.702 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.737 EEST SMA amantzio at dynacom line:2783 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.737 EEST SMA amantzio at dynacom line:2784 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.737 EEST SMA amantzio at dynacom line:2785 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.737 EEST SMA amantzio at dynacom line:2786 LOG: duration: 0.045 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.737 EEST SMA amantzio at dynacom line:2787 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.737 EEST SMA amantzio at dynacom line:2788 LOG: duration: 0.064 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.737 EEST SMA amantzio at dynacom line:2789 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.737 EEST SMA amantzio at dynacom line:2790 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.737 EEST SMA amantzio at dynacom line:2791 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.784 EEST SMA amantzio at dynacom line:2792 LOG: duration: 47.363 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.785 EEST SMA amantzio at dynacom line:2793 LOG: duration: 0.123 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.786 EEST SMA amantzio at dynacom line:2794 LOG: duration: 0.655 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.786 EEST SMA amantzio at dynacom line:2795 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.786 EEST SMA amantzio at dynacom line:2796 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.786 EEST SMA amantzio at dynacom line:2797 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.786 EEST SMA amantzio at dynacom line:2798 LOG: duration: 0.041 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.786 EEST SMA amantzio at dynacom line:2799 LOG: duration: 0.035 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.786 EEST SMA amantzio at dynacom line:2800 LOG: duration: 0.082 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.786 EEST SMA amantzio at dynacom line:2801 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.786 EEST SMA amantzio at dynacom line:2802 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.786 EEST SMA amantzio at dynacom line:2803 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.835 EEST SMA amantzio at dynacom line:2804 LOG: duration: 49.384 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.836 EEST SMA amantzio at dynacom line:2805 LOG: duration: 0.150 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.837 EEST SMA amantzio at dynacom line:2806 LOG: duration: 0.645 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.837 EEST SMA amantzio at dynacom line:2807 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.837 EEST SMA amantzio at dynacom line:2808 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.837 EEST SMA amantzio at dynacom line:2809 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.837 EEST SMA amantzio at dynacom line:2810 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.837 EEST SMA amantzio at dynacom line:2811 LOG: duration: 0.030 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.837 EEST SMA amantzio at dynacom line:2812 LOG: duration: 0.062 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.837 EEST SMA amantzio at dynacom line:2813 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.837 EEST SMA amantzio at dynacom line:2814 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.837 EEST SMA amantzio at dynacom line:2815 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.882 EEST SMA amantzio at dynacom line:2816 LOG: duration: 44.846 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.883 EEST SMA amantzio at dynacom line:2817 LOG: duration: 0.130 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.883 EEST SMA amantzio at dynacom line:2818 LOG: duration: 0.684 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.883 EEST SMA amantzio at dynacom line:2819 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.883 EEST SMA amantzio at dynacom line:2820 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.883 EEST SMA amantzio at dynacom line:2821 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.883 EEST SMA amantzio at dynacom line:2822 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.884 EEST SMA amantzio at dynacom line:2823 LOG: duration: 0.025 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.884 EEST SMA amantzio at dynacom line:2824 LOG: duration: 0.060 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.884 EEST SMA amantzio at dynacom line:2825 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.884 EEST SMA amantzio at dynacom line:2826 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.884 EEST SMA amantzio at dynacom line:2827 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.930 EEST SMA amantzio at dynacom line:2828 LOG: duration: 46.051 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.930 EEST SMA amantzio at dynacom line:2829 LOG: duration: 0.147 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.931 EEST SMA amantzio at dynacom line:2830 LOG: duration: 0.771 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.931 EEST SMA amantzio at dynacom line:2831 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.931 EEST SMA amantzio at dynacom line:2832 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.931 EEST SMA amantzio at dynacom line:2833 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.931 EEST SMA amantzio at dynacom line:2834 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.931 EEST SMA amantzio at dynacom line:2835 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.932 EEST SMA amantzio at dynacom line:2836 LOG: duration: 0.062 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.932 EEST SMA amantzio at dynacom line:2837 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.932 EEST SMA amantzio at dynacom line:2838 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.932 EEST SMA amantzio at dynacom line:2839 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.981 EEST SMA amantzio at dynacom line:2840 LOG: duration: 49.242 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.981 EEST SMA amantzio at dynacom line:2841 LOG: duration: 0.129 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.982 EEST SMA amantzio at dynacom line:2842 LOG: duration: 0.724 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.982 EEST SMA amantzio at dynacom line:2843 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.982 EEST SMA amantzio at dynacom line:2844 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.982 EEST SMA amantzio at dynacom line:2845 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.982 EEST SMA amantzio at dynacom line:2846 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.982 EEST SMA amantzio at dynacom line:2847 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.982 EEST SMA amantzio at dynacom line:2848 LOG: duration: 0.064 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.982 EEST SMA amantzio at dynacom line:2849 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.983 EEST SMA amantzio at dynacom line:2850 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:53.983 EEST SMA amantzio at dynacom line:2851 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.030 EEST SMA amantzio at dynacom line:2852 LOG: duration: 47.352 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.030 EEST SMA amantzio at dynacom line:2853 LOG: duration: 0.126 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.031 EEST SMA amantzio at dynacom line:2854 LOG: duration: 0.718 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.031 EEST SMA amantzio at dynacom line:2855 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.031 EEST SMA amantzio at dynacom line:2856 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.031 EEST SMA amantzio at dynacom line:2857 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.031 EEST SMA amantzio at dynacom line:2858 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.031 EEST SMA amantzio at dynacom line:2859 LOG: duration: 0.034 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.032 EEST SMA amantzio at dynacom line:2860 LOG: duration: 0.073 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.032 EEST SMA amantzio at dynacom line:2861 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.032 EEST SMA amantzio at dynacom line:2862 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.032 EEST SMA amantzio at dynacom line:2863 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.077 EEST SMA amantzio at dynacom line:2864 LOG: duration: 45.590 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.078 EEST SMA amantzio at dynacom line:2865 LOG: duration: 0.120 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.078 EEST SMA amantzio at dynacom line:2866 LOG: duration: 0.634 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.078 EEST SMA amantzio at dynacom line:2867 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.078 EEST SMA amantzio at dynacom line:2868 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.078 EEST SMA amantzio at dynacom line:2869 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.078 EEST SMA amantzio at dynacom line:2870 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.079 EEST SMA amantzio at dynacom line:2871 LOG: duration: 0.024 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.079 EEST SMA amantzio at dynacom line:2872 LOG: duration: 0.059 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.079 EEST SMA amantzio at dynacom line:2873 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.079 EEST SMA amantzio at dynacom line:2874 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.079 EEST SMA amantzio at dynacom line:2875 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.124 EEST SMA amantzio at dynacom line:2876 LOG: duration: 45.842 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.125 EEST SMA amantzio at dynacom line:2877 LOG: duration: 0.020 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.125 EEST SMA amantzio at dynacom line:2878 LOG: duration: 0.020 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.125 EEST SMA amantzio at dynacom line:2879 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.125 EEST SMA amantzio at dynacom line:2880 LOG: duration: 0.056 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.135 EEST SMA amantzio at dynacom line:2881 LOG: duration: 0.016 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.135 EEST SMA amantzio at dynacom line:2882 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.136 EEST SMA amantzio at dynacom line:2883 LOG: duration: 0.073 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.136 EEST SMA amantzio at dynacom line:2884 LOG: duration: 0.095 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:54.136 EEST SMA amantzio at dynacom line:2885 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.083 EEST SMA amantzio at dynacom line:2886 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.083 EEST SMA amantzio at dynacom line:2887 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.084 EEST SMA amantzio at dynacom line:2888 LOG: duration: 0.186 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.088 EEST SMA amantzio at dynacom line:2889 LOG: duration: 3.864 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.088 EEST SMA amantzio at dynacom line:2890 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.774 EEST SMA amantzio at dynacom line:2891 LOG: duration: 685.713 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.794 EEST SMA amantzio at dynacom line:2892 LOG: duration: 0.025 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.794 EEST SMA amantzio at dynacom line:2893 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.794 EEST SMA amantzio at dynacom line:2894 LOG: duration: 0.015 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.795 EEST SMA amantzio at dynacom line:2895 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.795 EEST SMA amantzio at dynacom line:2896 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.795 EEST SMA amantzio at dynacom line:2897 LOG: duration: 0.016 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.795 EEST SMA amantzio at dynacom line:2898 LOG: duration: 0.038 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.795 EEST SMA amantzio at dynacom line:2899 LOG: duration: 0.029 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.795 EEST SMA amantzio at dynacom line:2900 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.795 EEST SMA amantzio at dynacom line:2901 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.795 EEST SMA amantzio at dynacom line:2902 LOG: duration: 0.060 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.795 EEST SMA amantzio at dynacom line:2903 LOG: duration: 0.358 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.795 EEST SMA amantzio at dynacom line:2904 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.796 EEST SMA amantzio at dynacom line:2905 LOG: duration: 0.073 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.796 EEST SMA amantzio at dynacom line:2906 LOG: duration: 0.117 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.796 EEST SMA amantzio at dynacom line:2907 DETAIL: Parameters: $1 = 'sys14', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.796 EEST SMA amantzio at dynacom line:2908 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.796 EEST SMA amantzio at dynacom line:2909 DETAIL: Parameters: $1 = 'sys14', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.796 EEST SMA amantzio at dynacom line:2910 LOG: duration: 0.421 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.796 EEST SMA amantzio at dynacom line:2911 LOG: duration: 0.017 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.796 EEST SMA amantzio at dynacom line:2912 LOG: duration: 0.013 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.796 EEST SMA amantzio at dynacom line:2913 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.796 EEST SMA amantzio at dynacom line:2914 LOG: duration: 0.007 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.796 EEST SMA amantzio at dynacom line:2915 LOG: duration: 0.038 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767538,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.797 EEST SMA amantzio at dynacom line:2916 LOG: duration: 0.112 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767538,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.797 EEST SMA amantzio at dynacom line:2917 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767538,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.797 EEST SMA amantzio at dynacom line:2918 LOG: duration: 0.027 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.799 EEST SMA amantzio at dynacom line:2919 LOG: duration: 0.008 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.799 EEST SMA amantzio at dynacom line:2920 LOG: duration: 0.004 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.799 EEST SMA amantzio at dynacom line:2921 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.805 EEST SMA amantzio at dynacom line:2922 LOG: duration: 5.742 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.813 EEST SMA amantzio at dynacom line:2923 LOG: duration: 0.024 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.813 EEST SMA amantzio at dynacom line:2924 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.814 EEST SMA amantzio at dynacom line:2925 LOG: duration: 0.089 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.814 EEST SMA amantzio at dynacom line:2926 LOG: duration: 0.110 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:41:58.814 EEST SMA amantzio at dynacom line:2927 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.108 EEST SMA amantzio at dynacom line:2928 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.108 EEST SMA amantzio at dynacom line:2929 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.109 EEST SMA amantzio at dynacom line:2930 LOG: duration: 0.168 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.112 EEST SMA amantzio at dynacom line:2931 LOG: duration: 3.573 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.112 EEST SMA amantzio at dynacom line:2932 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.808 EEST SMA amantzio at dynacom line:2933 LOG: duration: 695.562 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.837 EEST SMA amantzio at dynacom line:2934 LOG: duration: 0.023 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.837 EEST SMA amantzio at dynacom line:2935 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2936 LOG: duration: 0.011 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2937 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2938 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2939 LOG: duration: 0.020 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2940 LOG: duration: 0.039 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2941 LOG: duration: 0.025 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2942 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2943 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2944 LOG: duration: 0.047 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2945 LOG: duration: 0.365 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2946 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2947 LOG: duration: 0.015 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.838 EEST SMA amantzio at dynacom line:2948 LOG: duration: 0.011 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.839 EEST SMA amantzio at dynacom line:2949 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.839 EEST SMA amantzio at dynacom line:2950 LOG: duration: 0.006 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.839 EEST SMA amantzio at dynacom line:2951 LOG: duration: 0.042 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.839 EEST SMA amantzio at dynacom line:2952 LOG: duration: 0.383 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.839 EEST SMA amantzio at dynacom line:2953 LOG: duration: 0.027 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.839 EEST SMA amantzio at dynacom line:2954 LOG: duration: 0.097 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.839 EEST SMA amantzio at dynacom line:2955 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.839 EEST SMA amantzio at dynacom line:2956 LOG: duration: 0.015 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.840 EEST SMA amantzio at dynacom line:2957 LOG: duration: 0.062 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.840 EEST SMA amantzio at dynacom line:2958 LOG: duration: 0.542 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.840 EEST SMA amantzio at dynacom line:2959 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.840 EEST SMA amantzio at dynacom line:2960 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.840 EEST SMA amantzio at dynacom line:2961 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.840 EEST SMA amantzio at dynacom line:2962 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.840 EEST SMA amantzio at dynacom line:2963 LOG: duration: 0.025 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.840 EEST SMA amantzio at dynacom line:2964 LOG: duration: 0.059 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.840 EEST SMA amantzio at dynacom line:2965 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.840 EEST SMA amantzio at dynacom line:2966 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.840 EEST SMA amantzio at dynacom line:2967 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.887 EEST SMA amantzio at dynacom line:2968 LOG: duration: 46.362 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.887 EEST SMA amantzio at dynacom line:2969 LOG: duration: 0.123 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.888 EEST SMA amantzio at dynacom line:2970 LOG: duration: 0.639 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.888 EEST SMA amantzio at dynacom line:2971 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.888 EEST SMA amantzio at dynacom line:2972 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.888 EEST SMA amantzio at dynacom line:2973 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.888 EEST SMA amantzio at dynacom line:2974 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.888 EEST SMA amantzio at dynacom line:2975 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.888 EEST SMA amantzio at dynacom line:2976 LOG: duration: 0.073 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.888 EEST SMA amantzio at dynacom line:2977 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.888 EEST SMA amantzio at dynacom line:2978 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.888 EEST SMA amantzio at dynacom line:2979 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.936 EEST SMA amantzio at dynacom line:2980 LOG: duration: 47.422 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.936 EEST SMA amantzio at dynacom line:2981 LOG: duration: 0.140 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.937 EEST SMA amantzio at dynacom line:2982 LOG: duration: 0.751 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.937 EEST SMA amantzio at dynacom line:2983 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.937 EEST SMA amantzio at dynacom line:2984 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.937 EEST SMA amantzio at dynacom line:2985 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.937 EEST SMA amantzio at dynacom line:2986 LOG: duration: 0.046 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.937 EEST SMA amantzio at dynacom line:2987 LOG: duration: 0.040 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.937 EEST SMA amantzio at dynacom line:2988 LOG: duration: 0.092 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.937 EEST SMA amantzio at dynacom line:2989 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.937 EEST SMA amantzio at dynacom line:2990 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.937 EEST SMA amantzio at dynacom line:2991 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.984 EEST SMA amantzio at dynacom line:2992 LOG: duration: 46.301 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.984 EEST SMA amantzio at dynacom line:2993 LOG: duration: 0.140 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.985 EEST SMA amantzio at dynacom line:2994 LOG: duration: 0.705 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.985 EEST SMA amantzio at dynacom line:2995 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.985 EEST SMA amantzio at dynacom line:2996 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.985 EEST SMA amantzio at dynacom line:2997 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.985 EEST SMA amantzio at dynacom line:2998 LOG: duration: 0.047 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.985 EEST SMA amantzio at dynacom line:2999 LOG: duration: 0.034 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.985 EEST SMA amantzio at dynacom line:3000 LOG: duration: 0.077 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.985 EEST SMA amantzio at dynacom line:3001 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.985 EEST SMA amantzio at dynacom line:3002 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:00.985 EEST SMA amantzio at dynacom line:3003 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.037 EEST SMA amantzio at dynacom line:3004 LOG: duration: 51.102 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.037 EEST SMA amantzio at dynacom line:3005 LOG: duration: 0.141 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.038 EEST SMA amantzio at dynacom line:3006 LOG: duration: 0.650 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.038 EEST SMA amantzio at dynacom line:3007 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.038 EEST SMA amantzio at dynacom line:3008 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.038 EEST SMA amantzio at dynacom line:3009 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.038 EEST SMA amantzio at dynacom line:3010 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.038 EEST SMA amantzio at dynacom line:3011 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.038 EEST SMA amantzio at dynacom line:3012 LOG: duration: 0.074 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.038 EEST SMA amantzio at dynacom line:3013 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.038 EEST SMA amantzio at dynacom line:3014 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.038 EEST SMA amantzio at dynacom line:3015 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.092 EEST SMA amantzio at dynacom line:3016 LOG: duration: 53.670 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.093 EEST SMA amantzio at dynacom line:3017 LOG: duration: 0.185 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.093 EEST SMA amantzio at dynacom line:3018 LOG: duration: 0.809 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.093 EEST SMA amantzio at dynacom line:3019 DETAIL: Parameters: $1 = '214767537'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.093 EEST SMA amantzio at dynacom line:3020 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.093 EEST SMA amantzio at dynacom line:3021 DETAIL: Parameters: $1 = '214767537'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.094 EEST SMA amantzio at dynacom line:3022 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.094 EEST SMA amantzio at dynacom line:3023 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.094 EEST SMA amantzio at dynacom line:3024 LOG: duration: 0.066 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.094 EEST SMA amantzio at dynacom line:3025 DETAIL: Parameters: $1 = '214767537'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.094 EEST SMA amantzio at dynacom line:3026 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.094 EEST SMA amantzio at dynacom line:3027 DETAIL: Parameters: $1 = '214767537'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.143 EEST SMA amantzio at dynacom line:3028 LOG: duration: 49.413 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.144 EEST SMA amantzio at dynacom line:3029 LOG: duration: 0.130 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.145 EEST SMA amantzio at dynacom line:3030 LOG: duration: 0.739 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.145 EEST SMA amantzio at dynacom line:3031 DETAIL: Parameters: $1 = '214767538'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.145 EEST SMA amantzio at dynacom line:3032 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.145 EEST SMA amantzio at dynacom line:3033 DETAIL: Parameters: $1 = '214767538'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.145 EEST SMA amantzio at dynacom line:3034 LOG: duration: 0.044 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.145 EEST SMA amantzio at dynacom line:3035 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.145 EEST SMA amantzio at dynacom line:3036 LOG: duration: 0.062 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.145 EEST SMA amantzio at dynacom line:3037 DETAIL: Parameters: $1 = '214767538'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.145 EEST SMA amantzio at dynacom line:3038 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.145 EEST SMA amantzio at dynacom line:3039 DETAIL: Parameters: $1 = '214767538'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.192 EEST SMA amantzio at dynacom line:3040 LOG: duration: 47.249 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.193 EEST SMA amantzio at dynacom line:3041 LOG: duration: 0.138 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.194 EEST SMA amantzio at dynacom line:3042 LOG: duration: 0.737 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.194 EEST SMA amantzio at dynacom line:3043 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.194 EEST SMA amantzio at dynacom line:3044 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.194 EEST SMA amantzio at dynacom line:3045 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.194 EEST SMA amantzio at dynacom line:3046 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.194 EEST SMA amantzio at dynacom line:3047 LOG: duration: 0.026 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.194 EEST SMA amantzio at dynacom line:3048 LOG: duration: 0.063 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.194 EEST SMA amantzio at dynacom line:3049 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.194 EEST SMA amantzio at dynacom line:3050 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.194 EEST SMA amantzio at dynacom line:3051 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.240 EEST SMA amantzio at dynacom line:3052 LOG: duration: 46.538 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.241 EEST SMA amantzio at dynacom line:3053 LOG: duration: 0.134 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.242 EEST SMA amantzio at dynacom line:3054 LOG: duration: 0.707 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.242 EEST SMA amantzio at dynacom line:3055 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.242 EEST SMA amantzio at dynacom line:3056 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.242 EEST SMA amantzio at dynacom line:3057 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.242 EEST SMA amantzio at dynacom line:3058 LOG: duration: 0.041 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.242 EEST SMA amantzio at dynacom line:3059 LOG: duration: 0.027 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.242 EEST SMA amantzio at dynacom line:3060 LOG: duration: 0.062 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.242 EEST SMA amantzio at dynacom line:3061 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.242 EEST SMA amantzio at dynacom line:3062 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.242 EEST SMA amantzio at dynacom line:3063 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.288 EEST SMA amantzio at dynacom line:3064 LOG: duration: 45.776 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.288 EEST SMA amantzio at dynacom line:3065 LOG: duration: 0.123 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.289 EEST SMA amantzio at dynacom line:3066 LOG: duration: 0.680 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.289 EEST SMA amantzio at dynacom line:3067 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.289 EEST SMA amantzio at dynacom line:3068 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.289 EEST SMA amantzio at dynacom line:3069 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.289 EEST SMA amantzio at dynacom line:3070 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.289 EEST SMA amantzio at dynacom line:3071 LOG: duration: 0.036 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.289 EEST SMA amantzio at dynacom line:3072 LOG: duration: 0.079 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.289 EEST SMA amantzio at dynacom line:3073 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.289 EEST SMA amantzio at dynacom line:3074 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.289 EEST SMA amantzio at dynacom line:3075 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.337 EEST SMA amantzio at dynacom line:3076 LOG: duration: 47.979 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.338 EEST SMA amantzio at dynacom line:3077 LOG: duration: 0.128 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.339 EEST SMA amantzio at dynacom line:3078 LOG: duration: 0.710 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.339 EEST SMA amantzio at dynacom line:3079 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.339 EEST SMA amantzio at dynacom line:3080 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.339 EEST SMA amantzio at dynacom line:3081 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.339 EEST SMA amantzio at dynacom line:3082 LOG: duration: 0.045 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.339 EEST SMA amantzio at dynacom line:3083 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.339 EEST SMA amantzio at dynacom line:3084 LOG: duration: 0.065 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.339 EEST SMA amantzio at dynacom line:3085 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.339 EEST SMA amantzio at dynacom line:3086 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.339 EEST SMA amantzio at dynacom line:3087 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.383 EEST SMA amantzio at dynacom line:3088 LOG: duration: 43.482 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.383 EEST SMA amantzio at dynacom line:3089 LOG: duration: 0.127 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.384 EEST SMA amantzio at dynacom line:3090 LOG: duration: 0.740 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.384 EEST SMA amantzio at dynacom line:3091 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.384 EEST SMA amantzio at dynacom line:3092 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.384 EEST SMA amantzio at dynacom line:3093 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.384 EEST SMA amantzio at dynacom line:3094 LOG: duration: 0.041 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.384 EEST SMA amantzio at dynacom line:3095 LOG: duration: 0.034 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.384 EEST SMA amantzio at dynacom line:3096 LOG: duration: 0.073 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.384 EEST SMA amantzio at dynacom line:3097 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.384 EEST SMA amantzio at dynacom line:3098 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.384 EEST SMA amantzio at dynacom line:3099 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.427 EEST SMA amantzio at dynacom line:3100 LOG: duration: 42.319 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.427 EEST SMA amantzio at dynacom line:3101 LOG: duration: 0.119 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.428 EEST SMA amantzio at dynacom line:3102 LOG: duration: 0.640 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.428 EEST SMA amantzio at dynacom line:3103 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.428 EEST SMA amantzio at dynacom line:3104 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.428 EEST SMA amantzio at dynacom line:3105 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.428 EEST SMA amantzio at dynacom line:3106 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.428 EEST SMA amantzio at dynacom line:3107 LOG: duration: 0.033 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.428 EEST SMA amantzio at dynacom line:3108 LOG: duration: 0.070 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.428 EEST SMA amantzio at dynacom line:3109 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.428 EEST SMA amantzio at dynacom line:3110 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.428 EEST SMA amantzio at dynacom line:3111 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.476 EEST SMA amantzio at dynacom line:3112 LOG: duration: 47.475 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.476 EEST SMA amantzio at dynacom line:3113 LOG: duration: 0.153 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.477 EEST SMA amantzio at dynacom line:3114 LOG: duration: 0.689 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.477 EEST SMA amantzio at dynacom line:3115 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.477 EEST SMA amantzio at dynacom line:3116 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.477 EEST SMA amantzio at dynacom line:3117 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.477 EEST SMA amantzio at dynacom line:3118 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.477 EEST SMA amantzio at dynacom line:3119 LOG: duration: 0.033 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.477 EEST SMA amantzio at dynacom line:3120 LOG: duration: 0.075 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.477 EEST SMA amantzio at dynacom line:3121 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.477 EEST SMA amantzio at dynacom line:3122 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.477 EEST SMA amantzio at dynacom line:3123 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.520 EEST SMA amantzio at dynacom line:3124 LOG: duration: 42.851 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.521 EEST SMA amantzio at dynacom line:3125 LOG: duration: 0.127 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.522 EEST SMA amantzio at dynacom line:3126 LOG: duration: 0.705 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.522 EEST SMA amantzio at dynacom line:3127 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.522 EEST SMA amantzio at dynacom line:3128 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.522 EEST SMA amantzio at dynacom line:3129 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.522 EEST SMA amantzio at dynacom line:3130 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.522 EEST SMA amantzio at dynacom line:3131 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.522 EEST SMA amantzio at dynacom line:3132 LOG: duration: 0.062 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.522 EEST SMA amantzio at dynacom line:3133 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.522 EEST SMA amantzio at dynacom line:3134 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.522 EEST SMA amantzio at dynacom line:3135 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.567 EEST SMA amantzio at dynacom line:3136 LOG: duration: 44.818 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.567 EEST SMA amantzio at dynacom line:3137 LOG: duration: 0.021 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.567 EEST SMA amantzio at dynacom line:3138 LOG: duration: 0.018 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.567 EEST SMA amantzio at dynacom line:3139 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.567 EEST SMA amantzio at dynacom line:3140 LOG: duration: 0.056 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.578 EEST SMA amantzio at dynacom line:3141 LOG: duration: 0.016 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.578 EEST SMA amantzio at dynacom line:3142 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.579 EEST SMA amantzio at dynacom line:3143 LOG: duration: 0.071 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.579 EEST SMA amantzio at dynacom line:3144 LOG: duration: 0.096 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:01.579 EEST SMA amantzio at dynacom line:3145 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:05.988 EEST SMA amantzio at dynacom line:3146 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:05.988 EEST SMA amantzio at dynacom line:3147 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:05.989 EEST SMA amantzio at dynacom line:3148 LOG: duration: 0.193 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:05.993 EEST SMA amantzio at dynacom line:3149 LOG: duration: 3.646 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:05.993 EEST SMA amantzio at dynacom line:3150 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.697 EEST SMA amantzio at dynacom line:3151 LOG: duration: 704.612 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.717 EEST SMA amantzio at dynacom line:3152 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.717 EEST SMA amantzio at dynacom line:3153 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.717 EEST SMA amantzio at dynacom line:3154 LOG: duration: 0.014 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.717 EEST SMA amantzio at dynacom line:3155 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.717 EEST SMA amantzio at dynacom line:3156 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.717 EEST SMA amantzio at dynacom line:3157 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.718 EEST SMA amantzio at dynacom line:3158 LOG: duration: 0.037 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.718 EEST SMA amantzio at dynacom line:3159 LOG: duration: 0.026 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.718 EEST SMA amantzio at dynacom line:3160 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.718 EEST SMA amantzio at dynacom line:3161 LOG: duration: 0.009 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.718 EEST SMA amantzio at dynacom line:3162 LOG: duration: 0.050 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.718 EEST SMA amantzio at dynacom line:3163 LOG: duration: 0.304 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.718 EEST SMA amantzio at dynacom line:3164 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.718 EEST SMA amantzio at dynacom line:3165 LOG: duration: 0.077 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.718 EEST SMA amantzio at dynacom line:3166 LOG: duration: 0.121 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.718 EEST SMA amantzio at dynacom line:3167 DETAIL: Parameters: $1 = 'sys15', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.718 EEST SMA amantzio at dynacom line:3168 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.718 EEST SMA amantzio at dynacom line:3169 DETAIL: Parameters: $1 = 'sys15', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767524', $9 = '214767524', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.719 EEST SMA amantzio at dynacom line:3170 LOG: duration: 0.413 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.719 EEST SMA amantzio at dynacom line:3171 LOG: duration: 0.018 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.719 EEST SMA amantzio at dynacom line:3172 LOG: duration: 0.013 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.719 EEST SMA amantzio at dynacom line:3173 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.719 EEST SMA amantzio at dynacom line:3174 LOG: duration: 0.006 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.719 EEST SMA amantzio at dynacom line:3175 LOG: duration: 0.038 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767539,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.719 EEST SMA amantzio at dynacom line:3176 LOG: duration: 0.110 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767539,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.719 EEST SMA amantzio at dynacom line:3177 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767539,it2.machtypecount from items it2 where it2.defid=214767524
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.719 EEST SMA amantzio at dynacom line:3178 LOG: duration: 0.028 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.723 EEST SMA amantzio at dynacom line:3179 LOG: duration: 0.008 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.723 EEST SMA amantzio at dynacom line:3180 LOG: duration: 0.004 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.723 EEST SMA amantzio at dynacom line:3181 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.727 EEST SMA amantzio at dynacom line:3182 LOG: duration: 3.277 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.901 EEST SMA amantzio at dynacom line:3183 LOG: duration: 0.025 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.901 EEST SMA amantzio at dynacom line:3184 LOG: duration: 0.008 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.902 EEST SMA amantzio at dynacom line:3185 LOG: duration: 0.075 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.902 EEST SMA amantzio at dynacom line:3186 LOG: duration: 0.096 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:06.902 EEST SMA amantzio at dynacom line:3187 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:07.892 EEST SMA amantzio at dynacom line:3188 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:07.892 EEST SMA amantzio at dynacom line:3189 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:07.893 EEST SMA amantzio at dynacom line:3190 LOG: duration: 0.224 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:07.896 EEST SMA amantzio at dynacom line:3191 LOG: duration: 3.168 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:07.896 EEST SMA amantzio at dynacom line:3192 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.508 EEST SMA amantzio at dynacom line:3193 LOG: duration: 612.472 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.528 EEST SMA amantzio at dynacom line:3194 LOG: duration: 0.023 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.528 EEST SMA amantzio at dynacom line:3195 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3196 LOG: duration: 0.014 ms parse <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3197 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3198 LOG: execute <unnamed>: BEGIN
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3199 LOG: duration: 0.012 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3200 LOG: duration: 0.039 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3201 LOG: duration: 0.028 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3202 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3203 LOG: duration: 0.010 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3204 LOG: duration: 0.052 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3205 LOG: duration: 0.280 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3206 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3207 LOG: duration: 0.015 ms parse pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.529 EEST SMA amantzio at dynacom line:3208 LOG: duration: 0.010 ms bind pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.530 EEST SMA amantzio at dynacom line:3209 LOG: execute pgpool60674/pgpool60674: SELECT current_setting('transaction_isolation')
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.530 EEST SMA amantzio at dynacom line:3210 LOG: duration: 0.005 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.530 EEST SMA amantzio at dynacom line:3211 LOG: duration: 0.049 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.530 EEST SMA amantzio at dynacom line:3212 LOG: duration: 0.386 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.530 EEST SMA amantzio at dynacom line:3213 LOG: duration: 0.029 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.530 EEST SMA amantzio at dynacom line:3214 LOG: duration: 0.109 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.530 EEST SMA amantzio at dynacom line:3215 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.530 EEST SMA amantzio at dynacom line:3216 LOG: duration: 0.016 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.531 EEST SMA amantzio at dynacom line:3217 LOG: duration: 0.060 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.531 EEST SMA amantzio at dynacom line:3218 LOG: duration: 0.518 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.531 EEST SMA amantzio at dynacom line:3219 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.531 EEST SMA amantzio at dynacom line:3220 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.531 EEST SMA amantzio at dynacom line:3221 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.531 EEST SMA amantzio at dynacom line:3222 LOG: duration: 0.037 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.531 EEST SMA amantzio at dynacom line:3223 LOG: duration: 0.027 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.531 EEST SMA amantzio at dynacom line:3224 LOG: duration: 0.064 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.531 EEST SMA amantzio at dynacom line:3225 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.531 EEST SMA amantzio at dynacom line:3226 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.531 EEST SMA amantzio at dynacom line:3227 DETAIL: Parameters: $1 = '214767524'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.581 EEST SMA amantzio at dynacom line:3228 LOG: duration: 50.046 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.582 EEST SMA amantzio at dynacom line:3229 LOG: duration: 0.149 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.583 EEST SMA amantzio at dynacom line:3230 LOG: duration: 0.761 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.583 EEST SMA amantzio at dynacom line:3231 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.583 EEST SMA amantzio at dynacom line:3232 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.583 EEST SMA amantzio at dynacom line:3233 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.583 EEST SMA amantzio at dynacom line:3234 LOG: duration: 0.044 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.583 EEST SMA amantzio at dynacom line:3235 LOG: duration: 0.044 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.583 EEST SMA amantzio at dynacom line:3236 LOG: duration: 0.091 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.583 EEST SMA amantzio at dynacom line:3237 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.583 EEST SMA amantzio at dynacom line:3238 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.583 EEST SMA amantzio at dynacom line:3239 DETAIL: Parameters: $1 = '214767525'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.631 EEST SMA amantzio at dynacom line:3240 LOG: duration: 47.540 ms
[69734] 680b6f1f.11066 2025-05-02 14:42:08.631 EEST @ line:587 LOG: checkpoint starting: time
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.631 EEST SMA amantzio at dynacom line:3241 LOG: duration: 0.122 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.632 EEST SMA amantzio at dynacom line:3242 LOG: duration: 0.683 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.632 EEST SMA amantzio at dynacom line:3243 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.632 EEST SMA amantzio at dynacom line:3244 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.632 EEST SMA amantzio at dynacom line:3245 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.632 EEST SMA amantzio at dynacom line:3246 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.632 EEST SMA amantzio at dynacom line:3247 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.632 EEST SMA amantzio at dynacom line:3248 LOG: duration: 0.069 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.632 EEST SMA amantzio at dynacom line:3249 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.632 EEST SMA amantzio at dynacom line:3250 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.632 EEST SMA amantzio at dynacom line:3251 DETAIL: Parameters: $1 = '214767534'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.678 EEST SMA amantzio at dynacom line:3252 LOG: duration: 45.636 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.679 EEST SMA amantzio at dynacom line:3253 LOG: duration: 0.135 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.679 EEST SMA amantzio at dynacom line:3254 LOG: duration: 0.728 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.679 EEST SMA amantzio at dynacom line:3255 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.679 EEST SMA amantzio at dynacom line:3256 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.679 EEST SMA amantzio at dynacom line:3257 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.680 EEST SMA amantzio at dynacom line:3258 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.680 EEST SMA amantzio at dynacom line:3259 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.680 EEST SMA amantzio at dynacom line:3260 LOG: duration: 0.067 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.680 EEST SMA amantzio at dynacom line:3261 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.680 EEST SMA amantzio at dynacom line:3262 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.680 EEST SMA amantzio at dynacom line:3263 DETAIL: Parameters: $1 = '214767535'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.728 EEST SMA amantzio at dynacom line:3264 LOG: duration: 48.466 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.729 EEST SMA amantzio at dynacom line:3265 LOG: duration: 0.165 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.730 EEST SMA amantzio at dynacom line:3266 LOG: duration: 0.787 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.730 EEST SMA amantzio at dynacom line:3267 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.730 EEST SMA amantzio at dynacom line:3268 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.730 EEST SMA amantzio at dynacom line:3269 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.730 EEST SMA amantzio at dynacom line:3270 LOG: duration: 0.042 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.730 EEST SMA amantzio at dynacom line:3271 LOG: duration: 0.030 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.730 EEST SMA amantzio at dynacom line:3272 LOG: duration: 0.063 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.730 EEST SMA amantzio at dynacom line:3273 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.730 EEST SMA amantzio at dynacom line:3274 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.730 EEST SMA amantzio at dynacom line:3275 DETAIL: Parameters: $1 = '214767536'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.776 EEST SMA amantzio at dynacom line:3276 LOG: duration: 46.223 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.777 EEST SMA amantzio at dynacom line:3277 LOG: duration: 0.141 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.778 EEST SMA amantzio at dynacom line:3278 LOG: duration: 0.792 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.778 EEST SMA amantzio at dynacom line:3279 DETAIL: Parameters: $1 = '214767537'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.778 EEST SMA amantzio at dynacom line:3280 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.778 EEST SMA amantzio at dynacom line:3281 DETAIL: Parameters: $1 = '214767537'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.778 EEST SMA amantzio at dynacom line:3282 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.778 EEST SMA amantzio at dynacom line:3283 LOG: duration: 0.036 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.778 EEST SMA amantzio at dynacom line:3284 LOG: duration: 0.085 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.778 EEST SMA amantzio at dynacom line:3285 DETAIL: Parameters: $1 = '214767537'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.778 EEST SMA amantzio at dynacom line:3286 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.778 EEST SMA amantzio at dynacom line:3287 DETAIL: Parameters: $1 = '214767537'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.827 EEST SMA amantzio at dynacom line:3288 LOG: duration: 49.186 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.828 EEST SMA amantzio at dynacom line:3289 LOG: duration: 0.151 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.829 EEST SMA amantzio at dynacom line:3290 LOG: duration: 0.865 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.829 EEST SMA amantzio at dynacom line:3291 DETAIL: Parameters: $1 = '214767538'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.829 EEST SMA amantzio at dynacom line:3292 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.829 EEST SMA amantzio at dynacom line:3293 DETAIL: Parameters: $1 = '214767538'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.829 EEST SMA amantzio at dynacom line:3294 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.829 EEST SMA amantzio at dynacom line:3295 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.829 EEST SMA amantzio at dynacom line:3296 LOG: duration: 0.066 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.829 EEST SMA amantzio at dynacom line:3297 DETAIL: Parameters: $1 = '214767538'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.829 EEST SMA amantzio at dynacom line:3298 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.829 EEST SMA amantzio at dynacom line:3299 DETAIL: Parameters: $1 = '214767538'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.882 EEST SMA amantzio at dynacom line:3300 LOG: duration: 52.696 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.882 EEST SMA amantzio at dynacom line:3301 LOG: duration: 0.146 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.883 EEST SMA amantzio at dynacom line:3302 LOG: duration: 0.720 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.883 EEST SMA amantzio at dynacom line:3303 DETAIL: Parameters: $1 = '214767539'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.883 EEST SMA amantzio at dynacom line:3304 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.883 EEST SMA amantzio at dynacom line:3305 DETAIL: Parameters: $1 = '214767539'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.883 EEST SMA amantzio at dynacom line:3306 LOG: duration: 0.041 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.883 EEST SMA amantzio at dynacom line:3307 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.883 EEST SMA amantzio at dynacom line:3308 LOG: duration: 0.078 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.883 EEST SMA amantzio at dynacom line:3309 DETAIL: Parameters: $1 = '214767539'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.883 EEST SMA amantzio at dynacom line:3310 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.883 EEST SMA amantzio at dynacom line:3311 DETAIL: Parameters: $1 = '214767539'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.930 EEST SMA amantzio at dynacom line:3312 LOG: duration: 46.461 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.930 EEST SMA amantzio at dynacom line:3313 LOG: duration: 0.128 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.931 EEST SMA amantzio at dynacom line:3314 LOG: duration: 0.660 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.931 EEST SMA amantzio at dynacom line:3315 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.931 EEST SMA amantzio at dynacom line:3316 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.931 EEST SMA amantzio at dynacom line:3317 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.931 EEST SMA amantzio at dynacom line:3318 LOG: duration: 0.043 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.931 EEST SMA amantzio at dynacom line:3319 LOG: duration: 0.041 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.931 EEST SMA amantzio at dynacom line:3320 LOG: duration: 0.093 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.931 EEST SMA amantzio at dynacom line:3321 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.931 EEST SMA amantzio at dynacom line:3322 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.931 EEST SMA amantzio at dynacom line:3323 DETAIL: Parameters: $1 = '214767526'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.977 EEST SMA amantzio at dynacom line:3324 LOG: duration: 45.952 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.978 EEST SMA amantzio at dynacom line:3325 LOG: duration: 0.130 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.979 EEST SMA amantzio at dynacom line:3326 LOG: duration: 0.733 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.979 EEST SMA amantzio at dynacom line:3327 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.979 EEST SMA amantzio at dynacom line:3328 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.979 EEST SMA amantzio at dynacom line:3329 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.979 EEST SMA amantzio at dynacom line:3330 LOG: duration: 0.039 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.979 EEST SMA amantzio at dynacom line:3331 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.979 EEST SMA amantzio at dynacom line:3332 LOG: duration: 0.062 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.979 EEST SMA amantzio at dynacom line:3333 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.979 EEST SMA amantzio at dynacom line:3334 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:08.979 EEST SMA amantzio at dynacom line:3335 DETAIL: Parameters: $1 = '214767527'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.023 EEST SMA amantzio at dynacom line:3336 LOG: duration: 43.434 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.023 EEST SMA amantzio at dynacom line:3337 LOG: duration: 0.124 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.024 EEST SMA amantzio at dynacom line:3338 LOG: duration: 0.694 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.024 EEST SMA amantzio at dynacom line:3339 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.024 EEST SMA amantzio at dynacom line:3340 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.024 EEST SMA amantzio at dynacom line:3341 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.024 EEST SMA amantzio at dynacom line:3342 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.024 EEST SMA amantzio at dynacom line:3343 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.024 EEST SMA amantzio at dynacom line:3344 LOG: duration: 0.062 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.024 EEST SMA amantzio at dynacom line:3345 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.024 EEST SMA amantzio at dynacom line:3346 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.024 EEST SMA amantzio at dynacom line:3347 DETAIL: Parameters: $1 = '214767528'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.066 EEST SMA amantzio at dynacom line:3348 LOG: duration: 41.967 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.067 EEST SMA amantzio at dynacom line:3349 LOG: duration: 0.124 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.067 EEST SMA amantzio at dynacom line:3350 LOG: duration: 0.730 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.067 EEST SMA amantzio at dynacom line:3351 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.067 EEST SMA amantzio at dynacom line:3352 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.067 EEST SMA amantzio at dynacom line:3353 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.067 EEST SMA amantzio at dynacom line:3354 LOG: duration: 0.045 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.068 EEST SMA amantzio at dynacom line:3355 LOG: duration: 0.036 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.068 EEST SMA amantzio at dynacom line:3356 LOG: duration: 0.079 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.068 EEST SMA amantzio at dynacom line:3357 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.068 EEST SMA amantzio at dynacom line:3358 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.068 EEST SMA amantzio at dynacom line:3359 DETAIL: Parameters: $1 = '214767529'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.112 EEST SMA amantzio at dynacom line:3360 LOG: duration: 44.619 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.113 EEST SMA amantzio at dynacom line:3361 LOG: duration: 0.122 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.114 EEST SMA amantzio at dynacom line:3362 LOG: duration: 0.723 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.114 EEST SMA amantzio at dynacom line:3363 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.114 EEST SMA amantzio at dynacom line:3364 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.114 EEST SMA amantzio at dynacom line:3365 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.114 EEST SMA amantzio at dynacom line:3366 LOG: duration: 0.040 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.114 EEST SMA amantzio at dynacom line:3367 LOG: duration: 0.042 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.114 EEST SMA amantzio at dynacom line:3368 LOG: duration: 0.092 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.114 EEST SMA amantzio at dynacom line:3369 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.114 EEST SMA amantzio at dynacom line:3370 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.114 EEST SMA amantzio at dynacom line:3371 DETAIL: Parameters: $1 = '214767530'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.162 EEST SMA amantzio at dynacom line:3372 LOG: duration: 47.662 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.162 EEST SMA amantzio at dynacom line:3373 LOG: duration: 0.129 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.163 EEST SMA amantzio at dynacom line:3374 LOG: duration: 0.673 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.163 EEST SMA amantzio at dynacom line:3375 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.163 EEST SMA amantzio at dynacom line:3376 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.163 EEST SMA amantzio at dynacom line:3377 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.163 EEST SMA amantzio at dynacom line:3378 LOG: duration: 0.037 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.163 EEST SMA amantzio at dynacom line:3379 LOG: duration: 0.025 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.163 EEST SMA amantzio at dynacom line:3380 LOG: duration: 0.058 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.163 EEST SMA amantzio at dynacom line:3381 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.163 EEST SMA amantzio at dynacom line:3382 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.163 EEST SMA amantzio at dynacom line:3383 DETAIL: Parameters: $1 = '214767531'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.210 EEST SMA amantzio at dynacom line:3384 LOG: duration: 46.595 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.210 EEST SMA amantzio at dynacom line:3385 LOG: duration: 0.143 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.211 EEST SMA amantzio at dynacom line:3386 LOG: duration: 0.711 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.211 EEST SMA amantzio at dynacom line:3387 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.211 EEST SMA amantzio at dynacom line:3388 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.211 EEST SMA amantzio at dynacom line:3389 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.211 EEST SMA amantzio at dynacom line:3390 LOG: duration: 0.045 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.211 EEST SMA amantzio at dynacom line:3391 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.211 EEST SMA amantzio at dynacom line:3392 LOG: duration: 0.064 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.211 EEST SMA amantzio at dynacom line:3393 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.212 EEST SMA amantzio at dynacom line:3394 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.212 EEST SMA amantzio at dynacom line:3395 DETAIL: Parameters: $1 = '214767532'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.261 EEST SMA amantzio at dynacom line:3396 LOG: duration: 49.573 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.262 EEST SMA amantzio at dynacom line:3397 LOG: duration: 0.131 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.262 EEST SMA amantzio at dynacom line:3398 LOG: duration: 0.646 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.262 EEST SMA amantzio at dynacom line:3399 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.262 EEST SMA amantzio at dynacom line:3400 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.262 EEST SMA amantzio at dynacom line:3401 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.263 EEST SMA amantzio at dynacom line:3402 LOG: duration: 0.038 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.263 EEST SMA amantzio at dynacom line:3403 LOG: duration: 0.033 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.263 EEST SMA amantzio at dynacom line:3404 LOG: duration: 0.071 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.263 EEST SMA amantzio at dynacom line:3405 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.263 EEST SMA amantzio at dynacom line:3406 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.263 EEST SMA amantzio at dynacom line:3407 DETAIL: Parameters: $1 = '214767533'
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.311 EEST SMA amantzio at dynacom line:3408 LOG: duration: 48.403 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.312 EEST SMA amantzio at dynacom line:3409 LOG: duration: 0.019 ms parse <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.312 EEST SMA amantzio at dynacom line:3410 LOG: duration: 0.020 ms bind <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.312 EEST SMA amantzio at dynacom line:3411 LOG: execute <unnamed>: COMMIT
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.312 EEST SMA amantzio at dynacom line:3412 LOG: duration: 0.056 ms
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.321 EEST SMA amantzio at dynacom line:3413 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.321 EEST SMA amantzio at dynacom line:3414 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.321 EEST SMA amantzio at dynacom line:3415 LOG: duration: 0.068 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.321 EEST SMA amantzio at dynacom line:3416 LOG: duration: 0.091 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15896) [60726] 6814af0b.ed36 2025-05-02 14:42:09.321 EEST SMA amantzio at dynacom line:3417 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
[69734] 680b6f1f.11066 2025-05-02 14:42:15.088 EEST @ line:588 LOG: checkpoint complete: wrote 59 buffers (0.0%); 0 WAL file(s) added, 0 removed, 0 recycled; write=6.202 s, sync=0.154 s, total=6.458 s; sync files=32, longest=0.019 s, average=0.005 s; distance=330 kB, estimate=346761 kB; lsn=40A9/D7D4C0B0, redo lsn=40A9/D7D4C058
10.200.132.209(60668) [61035] 6814af9d.ee6b 2025-05-02 14:42:21.438 EEST [unknown] [unknown]@[unknown] line:1 LOG: connection received: host=10.200.132.209 port=60668
10.200.132.209(60668) [61035] 6814af9d.ee6b 2025-05-02 14:42:21.563 EEST [unknown] periodic at dynacom line:2 LOG: connection authenticated: user="periodic" method=trust (/usr/local/var/lib/pgsql/data/pg_hba.conf:96)
10.200.132.209(60668) [61035] 6814af9d.ee6b 2025-05-02 14:42:21.563 EEST [unknown] periodic at dynacom line:3 LOG: connection authorized: user=periodic database=dynacom SSL enabled (protocol=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384, bits=256)
10.200.132.209(60668) [61035] 6814af9d.ee6b 2025-05-02 14:42:21.838 EEST PostgreSQL JDBC Driver periodic at dynacom line:4 LOG: disconnection: session time: 0:00:00.399 user=periodic database=dynacom host=10.200.132.209 port=60668
-------------- next part --------------
[60642] 2025-05-02 14:39:17.002 main [No Connection]@[No Connection] line:4LOG: health_check_stats_shared_memory_size: requested size: 12288
[60642] 2025-05-02 14:39:17.002 main [No Connection]@[No Connection] line:5LOG: memory cache initialized
[60642] 2025-05-02 14:39:17.002 main [No Connection]@[No Connection] line:6DETAIL: memcache blocks :64
[60642] 2025-05-02 14:39:17.002 main [No Connection]@[No Connection] line:7LOG: allocating (144847952) bytes of shared memory segment
[60642] 2025-05-02 14:39:17.002 main [No Connection]@[No Connection] line:8LOG: allocating shared memory segment of size: 144847952
[60642] 2025-05-02 14:39:17.056 main [No Connection]@[No Connection] line:9LOG: health_check_stats_shared_memory_size: requested size: 12288
[60642] 2025-05-02 14:39:17.056 main [No Connection]@[No Connection] line:10LOG: health_check_stats_shared_memory_size: requested size: 12288
[60642] 2025-05-02 14:39:17.056 main [No Connection]@[No Connection] line:11LOG: memory cache initialized
[60642] 2025-05-02 14:39:17.056 main [No Connection]@[No Connection] line:12DETAIL: memcache blocks :64
[60642] 2025-05-02 14:39:17.058 main [No Connection]@[No Connection] line:13LOG: pool_discard_oid_maps: discarded memqcache oid maps
[60642] 2025-05-02 14:39:17.066 main [No Connection]@[No Connection] line:14LOG: create socket files[0]: /tmp/.s.PGSQL.9999
[60642] 2025-05-02 14:39:17.067 main [No Connection]@[No Connection] line:15LOG: listen address[0]: *
[60642] 2025-05-02 14:39:17.067 main [No Connection]@[No Connection] line:16LOG: Setting up socket for :::9999
[60642] 2025-05-02 14:39:17.067 main [No Connection]@[No Connection] line:17LOG: Setting up socket for 0.0.0.0:9999
[60642] 2025-05-02 14:39:17.122 main [No Connection]@[No Connection] line:18LOG: find_primary_node_repeatedly: waiting for finding a primary node
[60642] 2025-05-02 14:39:17.122 main [No Connection]@[No Connection] line:19LOG: create socket files[0]: /tmp/.s.PGSQL.9898
[60642] 2025-05-02 14:39:17.122 main [No Connection]@[No Connection] line:20LOG: listen address[0]: localhost
[60642] 2025-05-02 14:39:17.122 main [No Connection]@[No Connection] line:21LOG: Setting up socket for ::1:9898
[60642] 2025-05-02 14:39:17.122 main [No Connection]@[No Connection] line:22LOG: Setting up socket for 127.0.0.1:9898
[60709] 2025-05-02 14:39:17.123 pcp_main [No Connection]@[No Connection] line:1LOG: PCP process: 60709 started
[60710] 2025-05-02 14:39:17.124 sr_check_worker [No Connection]@[No Connection] line:1LOG: process started
[60711] 2025-05-02 14:39:17.125 health_check [No Connection]@[No Connection] line:1LOG: process started
[60642] 2025-05-02 14:39:17.190 main [No Connection]@[No Connection] line:23LOG: pgpool-II successfully started. version 4.6.0 (chirikoboshi)
[60674] 2025-05-02 14:39:55.107 child [No Connection]@[No Connection] line:1LOG: new connection received
[60674] 2025-05-02 14:39:55.107 child [No Connection]@[No Connection] line:2DETAIL: connecting host=127.0.0.1 port=38837
[60674] 2025-05-02 14:39:55.134 [unknown] amantzio at dynacom line:3LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:55.134 [unknown] amantzio at dynacom line:4DETAIL: statement: "", query: "SET extra_float_digits = 3"
[60674] 2025-05-02 14:39:55.134 [unknown] amantzio at dynacom line:5LOG: DB node id: 0 backend pid: 60726 statement: SELECT pg_catalog.version()
[60674] 2025-05-02 14:39:55.134 [unknown] amantzio at dynacom line:6LOG: DB node id: 0 backend pid: 60726 statement: Parse: SET extra_float_digits = 3
[60674] 2025-05-02 14:39:55.134 [unknown] amantzio at dynacom line:7LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:55.134 [unknown] amantzio at dynacom line:8DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:9LOG: DB node id: 0 backend pid: 60726 statement: Bind: SET extra_float_digits = 3
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:10LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:11DETAIL: portal: ""
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:12LOG: statement: SET extra_float_digits = 3
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:13LOG: DB node id: 0 backend pid: 60726 statement: Execute: SET extra_float_digits = 3
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:14LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:15LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:16DETAIL: statement: "", query: "SET application_name = 'PostgreSQL JDBC Driver'"
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:17LOG: DB node id: 0 backend pid: 60726 statement: Parse: SET application_name = 'PostgreSQL JDBC Driver'
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:18LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:19DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:20LOG: DB node id: 0 backend pid: 60726 statement: Bind: SET application_name = 'PostgreSQL JDBC Driver'
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:21LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:22DETAIL: portal: ""
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:23LOG: statement: SET application_name = 'PostgreSQL JDBC Driver'
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:24LOG: DB node id: 0 backend pid: 60726 statement: Execute: SET application_name = 'PostgreSQL JDBC Driver'
[60674] 2025-05-02 14:39:55.135 [unknown] amantzio at dynacom line:25LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:26LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:27DETAIL: statement: "", query: "SHOW TRANSACTION ISOLATION LEVEL"
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:28LOG: DB node id: 0 backend pid: 60726 statement: Parse: SHOW TRANSACTION ISOLATION LEVEL
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:29LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:30DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:31LOG: DB node id: 0 backend pid: 60726 statement: Bind: SHOW TRANSACTION ISOLATION LEVEL
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:32LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:33DETAIL: portal: ""
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:34LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:35LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:36DETAIL: portal: ""
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:37LOG: statement: SHOW TRANSACTION ISOLATION LEVEL
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:38LOG: DB node id: 0 backend pid: 60726 statement: Execute: SHOW TRANSACTION ISOLATION LEVEL
[60674] 2025-05-02 14:39:55.150 PostgreSQL JDBC Driver amantzio at dynacom line:39LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:40LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:41DETAIL: statement: "", query: "SET application_name to 'SMA '"
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:42LOG: DB node id: 0 backend pid: 60726 statement: Parse: SET application_name to 'SMA '
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:43LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:44DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:45LOG: DB node id: 0 backend pid: 60726 statement: Bind: SET application_name to 'SMA '
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:46LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:47DETAIL: portal: ""
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:48LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:49LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:50DETAIL: portal: ""
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:51LOG: statement: SET application_name to 'SMA '
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:52LOG: DB node id: 0 backend pid: 60726 statement: Execute: SET application_name to 'SMA '
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:53LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:55.157 PostgreSQL JDBC Driver amantzio at dynacom line:54DETAIL: statement: "", query: "select set_search_path('bdynacom,epaybdynacom,epay')"
[60674] 2025-05-02 14:39:55.158 PostgreSQL JDBC Driver amantzio at dynacom line:55LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:56LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:57LOG: DB node id: 0 backend pid: 60726 statement: Parse: select set_search_path('bdynacom,epaybdynacom,epay')
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:58LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:59DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:60LOG: DB node id: 0 backend pid: 60726 statement: Bind: select set_search_path('bdynacom,epaybdynacom,epay')
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:61LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:62DETAIL: portal: ""
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:63LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:64LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:65DETAIL: portal: ""
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:66LOG: statement: select set_search_path('bdynacom,epaybdynacom,epay')
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:67LOG: DB node id: 0 backend pid: 60726 statement: Execute: select set_search_path('bdynacom,epaybdynacom,epay')
[60674] 2025-05-02 14:39:55.159 PostgreSQL JDBC Driver amantzio at dynacom line:68LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:55.176 SMA amantzio at dynacom line:69LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:55.176 SMA amantzio at dynacom line:70DETAIL: statement: "", query: "SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1"
[60674] 2025-05-02 14:39:55.176 SMA amantzio at dynacom line:71LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"smanews"')::oid, 0)
[60674] 2025-05-02 14:39:55.177 SMA amantzio at dynacom line:72LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
[60674] 2025-05-02 14:39:55.177 SMA amantzio at dynacom line:73LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:55.178 SMA amantzio at dynacom line:74LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'smanews' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:55.178 SMA amantzio at dynacom line:75LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:55.178 SMA amantzio at dynacom line:76LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
[60674] 2025-05-02 14:39:55.179 SMA amantzio at dynacom line:77LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
[60674] 2025-05-02 14:39:55.179 SMA amantzio at dynacom line:78LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:55.179 SMA amantzio at dynacom line:79DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:55.179 SMA amantzio at dynacom line:80LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
[60674] 2025-05-02 14:39:55.179 SMA amantzio at dynacom line:81LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:55.179 SMA amantzio at dynacom line:82DETAIL: portal: ""
[60674] 2025-05-02 14:39:55.179 SMA amantzio at dynacom line:83LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:55.179 SMA amantzio at dynacom line:84LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:55.179 SMA amantzio at dynacom line:85DETAIL: portal: ""
[60674] 2025-05-02 14:39:55.179 SMA amantzio at dynacom line:86LOG: statement: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
[60674] 2025-05-02 14:39:55.179 SMA amantzio at dynacom line:87LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
[60674] 2025-05-02 14:39:55.179 SMA amantzio at dynacom line:88LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:89LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:90DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:91LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:92LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:93DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:94LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:95LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:96DETAIL: portal: ""
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:97LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:98LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:99DETAIL: portal: ""
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:100LOG: statement:
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:101LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:39:56.719 SMA amantzio at dynacom line:102LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:56.720 SMA amantzio at dynacom line:103LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:56.720 SMA amantzio at dynacom line:104DETAIL: statement: "", query: "select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)"
[60674] 2025-05-02 14:39:56.720 SMA amantzio at dynacom line:105LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff_works_in"')::oid, 0)
[60674] 2025-05-02 14:39:56.721 SMA amantzio at dynacom line:106LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff"')::oid, 0)
[60674] 2025-05-02 14:39:56.721 SMA amantzio at dynacom line:107LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"company_dept_instance"')::oid, 0)
[60674] 2025-05-02 14:39:56.721 SMA amantzio at dynacom line:108LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff_works_in' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:56.721 SMA amantzio at dynacom line:109LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:56.721 SMA amantzio at dynacom line:110LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_dept_instance' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:56.722 SMA amantzio at dynacom line:111LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:56.722 SMA amantzio at dynacom line:112LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:56.722 SMA amantzio at dynacom line:113LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:56.722 SMA amantzio at dynacom line:114LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:56.723 SMA amantzio at dynacom line:115LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:56.723 SMA amantzio at dynacom line:116LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:56.723 SMA amantzio at dynacom line:117LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:39:56.723 SMA amantzio at dynacom line:118LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:39:56.723 SMA amantzio at dynacom line:119LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:39:56.723 SMA amantzio at dynacom line:120LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:56.723 SMA amantzio at dynacom line:121LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:56.723 SMA amantzio at dynacom line:122LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:56.724 SMA amantzio at dynacom line:123LOG: DB node id: 0 backend pid: 60726 statement: Parse: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
[60674] 2025-05-02 14:39:56.724 SMA amantzio at dynacom line:124LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:56.724 SMA amantzio at dynacom line:125DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:56.724 SMA amantzio at dynacom line:126LOG: DB node id: 0 backend pid: 60726 statement: Bind: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
[60674] 2025-05-02 14:39:56.724 SMA amantzio at dynacom line:127LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:56.724 SMA amantzio at dynacom line:128DETAIL: portal: ""
[60674] 2025-05-02 14:39:56.724 SMA amantzio at dynacom line:129LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:56.724 SMA amantzio at dynacom line:130LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:56.724 SMA amantzio at dynacom line:131DETAIL: portal: ""
[60674] 2025-05-02 14:39:56.724 SMA amantzio at dynacom line:132LOG: statement: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
[60674] 2025-05-02 14:39:56.724 SMA amantzio at dynacom line:133LOG: DB node id: 0 backend pid: 60726 statement: Execute: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
[60674] 2025-05-02 14:39:56.724 SMA amantzio at dynacom line:134LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:56.725 SMA amantzio at dynacom line:135LOG: DB node id: 0 backend pid: 60726 statement: SELECT oid FROM pg_catalog.pg_database WHERE datname = 'dynacom'
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:136LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:137DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:138LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:139LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:140DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:141LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:142LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:143DETAIL: portal: ""
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:144LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:145LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:146DETAIL: portal: ""
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:147LOG: statement:
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:148LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:39:56.985 SMA amantzio at dynacom line:149LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:56.986 SMA amantzio at dynacom line:150LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:56.986 SMA amantzio at dynacom line:151DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:39:56.986 SMA amantzio at dynacom line:152LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"machdefs"')::oid, 0)
[60674] 2025-05-02 14:39:56.986 SMA amantzio at dynacom line:153LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"items"')::oid, 0)
[60674] 2025-05-02 14:39:56.986 SMA amantzio at dynacom line:154LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"vessels"')::oid, 0)
[60674] 2025-05-02 14:39:56.986 SMA amantzio at dynacom line:155LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"machtypes"')::oid, 0)
[60674] 2025-05-02 14:39:56.987 SMA amantzio at dynacom line:156LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"machtypesclasses"')::oid, 0)
[60674] 2025-05-02 14:39:56.987 SMA amantzio at dynacom line:157LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"makers"')::oid, 0)
[60674] 2025-05-02 14:39:56.987 SMA amantzio at dynacom line:158LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"licensees"')::oid, 0)
[60674] 2025-05-02 14:39:56.987 SMA amantzio at dynacom line:159LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"machclasses"')::oid, 0)
[60674] 2025-05-02 14:39:56.987 SMA amantzio at dynacom line:160LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
[60674] 2025-05-02 14:39:56.988 SMA amantzio at dynacom line:161LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
[60674] 2025-05-02 14:39:56.988 SMA amantzio at dynacom line:162LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
[60674] 2025-05-02 14:39:56.988 SMA amantzio at dynacom line:163LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
[60674] 2025-05-02 14:39:56.989 SMA amantzio at dynacom line:164LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
[60674] 2025-05-02 14:39:56.989 SMA amantzio at dynacom line:165LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
[60674] 2025-05-02 14:39:56.989 SMA amantzio at dynacom line:166LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machdefs' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:56.990 SMA amantzio at dynacom line:167LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'items' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:56.990 SMA amantzio at dynacom line:168LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'vessels' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:56.990 SMA amantzio at dynacom line:169LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypes' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:56.991 SMA amantzio at dynacom line:170LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypesclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:56.991 SMA amantzio at dynacom line:171LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'makers' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:56.991 SMA amantzio at dynacom line:172LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'licensees' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:56.992 SMA amantzio at dynacom line:173LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:56.992 SMA amantzio at dynacom line:174LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:56.992 SMA amantzio at dynacom line:175LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:56.992 SMA amantzio at dynacom line:176LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:56.993 SMA amantzio at dynacom line:177LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:56.993 SMA amantzio at dynacom line:178LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:56.993 SMA amantzio at dynacom line:179LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:56.993 SMA amantzio at dynacom line:180LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:56.993 SMA amantzio at dynacom line:181LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:56.993 SMA amantzio at dynacom line:182LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:56.994 SMA amantzio at dynacom line:183LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:56.994 SMA amantzio at dynacom line:184LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:56.994 SMA amantzio at dynacom line:185LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:56.994 SMA amantzio at dynacom line:186LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:56.994 SMA amantzio at dynacom line:187LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:56.994 SMA amantzio at dynacom line:188LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:56.994 SMA amantzio at dynacom line:189LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:56.995 SMA amantzio at dynacom line:190LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:56.995 SMA amantzio at dynacom line:191LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:56.995 SMA amantzio at dynacom line:192LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:56.995 SMA amantzio at dynacom line:193LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:56.995 SMA amantzio at dynacom line:194LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:56.995 SMA amantzio at dynacom line:195LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:56.995 SMA amantzio at dynacom line:196LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:197LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:198LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:199LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:200LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:201LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:202DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:203LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:204LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:205DETAIL: portal: ""
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:206LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:207LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:208DETAIL: portal: ""
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:209LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:210LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:39:56.996 SMA amantzio at dynacom line:211LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:212LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:213DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:214LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:215LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:216DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:217LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:218LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:219DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:220LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:221LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:222DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:223LOG: statement:
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:224LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:39:57.914 SMA amantzio at dynacom line:225LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:226LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:227DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:228LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:229LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:230DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:231LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:232LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:233DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:234LOG: statement: BEGIN
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:235LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:236LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:237DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:39:57.916 SMA amantzio at dynacom line:238LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:39:57.917 SMA amantzio at dynacom line:239LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:39:57.917 SMA amantzio at dynacom line:240LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:39:57.917 SMA amantzio at dynacom line:241LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:242LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:243DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:244LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:245LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:246DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:247LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:248LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:249DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:250LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:251LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:252LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:253LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:57.918 SMA amantzio at dynacom line:254DETAIL: statement: "", query: "SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767524"
[60674] 2025-05-02 14:39:57.919 SMA amantzio at dynacom line:255LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767524
[60674] 2025-05-02 14:39:57.919 SMA amantzio at dynacom line:256LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:57.919 SMA amantzio at dynacom line:257DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:57.919 SMA amantzio at dynacom line:258LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767524
[60674] 2025-05-02 14:39:57.919 SMA amantzio at dynacom line:259LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:57.919 SMA amantzio at dynacom line:260DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.919 SMA amantzio at dynacom line:261LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:57.919 SMA amantzio at dynacom line:262LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:57.919 SMA amantzio at dynacom line:263DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.919 SMA amantzio at dynacom line:264LOG: statement: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767524
[60674] 2025-05-02 14:39:57.919 SMA amantzio at dynacom line:265LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767524
[60674] 2025-05-02 14:39:57.919 SMA amantzio at dynacom line:266LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:267LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:268DETAIL: statement: "", query: "select machtypeclsid from machtypes where id=214748365"
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:269LOG: DB node id: 0 backend pid: 60726 statement: Parse: select machtypeclsid from machtypes where id=214748365
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:270LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:271DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:272LOG: DB node id: 0 backend pid: 60726 statement: Bind: select machtypeclsid from machtypes where id=214748365
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:273LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:274DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:275LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:276LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:277DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:278LOG: statement: select machtypeclsid from machtypes where id=214748365
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:279LOG: DB node id: 0 backend pid: 60726 statement: Execute: select machtypeclsid from machtypes where id=214748365
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:280LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:281LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:57.920 SMA amantzio at dynacom line:282DETAIL: statement: "", query: "select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno"
[60674] 2025-05-02 14:39:57.921 SMA amantzio at dynacom line:283LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"parts"')::oid, 0)
[60674] 2025-05-02 14:39:57.921 SMA amantzio at dynacom line:284LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"partclasses"')::oid, 0)
[60674] 2025-05-02 14:39:57.921 SMA amantzio at dynacom line:285LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'parts' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:57.921 SMA amantzio at dynacom line:286LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'partclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:57.922 SMA amantzio at dynacom line:287LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:57.922 SMA amantzio at dynacom line:288LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:57.922 SMA amantzio at dynacom line:289LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:57.922 SMA amantzio at dynacom line:290LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:57.923 SMA amantzio at dynacom line:291LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:39:57.923 SMA amantzio at dynacom line:292LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:39:57.923 SMA amantzio at dynacom line:293LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:57.923 SMA amantzio at dynacom line:294LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:57.924 SMA amantzio at dynacom line:295LOG: DB node id: 0 backend pid: 60726 statement: Parse: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
[60674] 2025-05-02 14:39:57.924 SMA amantzio at dynacom line:296LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:57.924 SMA amantzio at dynacom line:297DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:57.924 SMA amantzio at dynacom line:298LOG: DB node id: 0 backend pid: 60726 statement: Bind: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
[60674] 2025-05-02 14:39:57.924 SMA amantzio at dynacom line:299LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:57.924 SMA amantzio at dynacom line:300DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.924 SMA amantzio at dynacom line:301LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:57.924 SMA amantzio at dynacom line:302LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:57.924 SMA amantzio at dynacom line:303DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.924 SMA amantzio at dynacom line:304LOG: statement: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
[60674] 2025-05-02 14:39:57.924 SMA amantzio at dynacom line:305LOG: DB node id: 0 backend pid: 60726 statement: Execute: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
[60674] 2025-05-02 14:39:57.924 SMA amantzio at dynacom line:306LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:57.926 SMA amantzio at dynacom line:307LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:57.926 SMA amantzio at dynacom line:308DETAIL: statement: "", query: "select name from pmsactions where machclsid=$1"
[60674] 2025-05-02 14:39:57.926 SMA amantzio at dynacom line:309LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"pmsactions"')::oid, 0)
[60674] 2025-05-02 14:39:57.926 SMA amantzio at dynacom line:310LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsactions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:57.927 SMA amantzio at dynacom line:311LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:57.927 SMA amantzio at dynacom line:312LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:57.927 SMA amantzio at dynacom line:313LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:39:57.927 SMA amantzio at dynacom line:314LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:57.928 SMA amantzio at dynacom line:315LOG: DB node id: 0 backend pid: 60726 statement: Parse: select name from pmsactions where machclsid=$1
[60674] 2025-05-02 14:39:57.928 SMA amantzio at dynacom line:316LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:57.928 SMA amantzio at dynacom line:317DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:57.928 SMA amantzio at dynacom line:318LOG: DB node id: 0 backend pid: 60726 statement: Bind: select name from pmsactions where machclsid=$1
[60674] 2025-05-02 14:39:57.928 SMA amantzio at dynacom line:319LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:57.928 SMA amantzio at dynacom line:320DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.928 SMA amantzio at dynacom line:321LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:57.928 SMA amantzio at dynacom line:322LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:57.928 SMA amantzio at dynacom line:323DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.928 SMA amantzio at dynacom line:324LOG: statement: select name from pmsactions where machclsid=$1
[60674] 2025-05-02 14:39:57.928 SMA amantzio at dynacom line:325LOG: DB node id: 0 backend pid: 60726 statement: Execute: select name from pmsactions where machclsid=$1
[60674] 2025-05-02 14:39:57.928 SMA amantzio at dynacom line:326LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:57.929 SMA amantzio at dynacom line:327LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:57.929 SMA amantzio at dynacom line:328DETAIL: statement: "", query: "select name from pmsapps"
[60674] 2025-05-02 14:39:57.929 SMA amantzio at dynacom line:329LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"pmsapps"')::oid, 0)
[60674] 2025-05-02 14:39:57.929 SMA amantzio at dynacom line:330LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsapps' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:57.930 SMA amantzio at dynacom line:331LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:57.930 SMA amantzio at dynacom line:332LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:57.930 SMA amantzio at dynacom line:333LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:39:57.930 SMA amantzio at dynacom line:334LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:57.930 SMA amantzio at dynacom line:335LOG: DB node id: 0 backend pid: 60726 statement: Parse: select name from pmsapps
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:336LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:337DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:338LOG: DB node id: 0 backend pid: 60726 statement: Bind: select name from pmsapps
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:339LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:340DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:341LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:342LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:343DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:344LOG: statement: select name from pmsapps
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:345LOG: DB node id: 0 backend pid: 60726 statement: Execute: select name from pmsapps
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:346LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:347LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:348DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:349LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:350LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:351DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:57.931 SMA amantzio at dynacom line:352LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:39:57.932 SMA amantzio at dynacom line:353LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:57.932 SMA amantzio at dynacom line:354DETAIL: portal: ""
[60674] 2025-05-02 14:39:57.932 SMA amantzio at dynacom line:355LOG: statement: COMMIT
[60674] 2025-05-02 14:39:57.932 SMA amantzio at dynacom line:356LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:39:57.932 SMA amantzio at dynacom line:357LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:358LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:359DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:360LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:361LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:362DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:363LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:364LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:365DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:366LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:367LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:368DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:369LOG: statement:
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:370LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:39:58.501 SMA amantzio at dynacom line:371LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:372LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:373DETAIL: statement: "", query: "SHOW application_name"
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:374LOG: DB node id: 0 backend pid: 60726 statement: Parse: SHOW application_name
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:375LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:376DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:377LOG: DB node id: 0 backend pid: 60726 statement: Bind: SHOW application_name
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:378LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:379DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:380LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:381LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:382DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:383LOG: statement: SHOW application_name
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:384LOG: DB node id: 0 backend pid: 60726 statement: Execute: SHOW application_name
[60674] 2025-05-02 14:39:58.509 SMA amantzio at dynacom line:385LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:386LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:387DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:388LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:389LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:390DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:391LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:392LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:393DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:394LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:395LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:396DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:397LOG: statement:
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:398LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:39:58.528 SMA amantzio at dynacom line:399LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:58.541 SMA amantzio at dynacom line:400LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:58.541 SMA amantzio at dynacom line:401DETAIL: statement: "", query: "SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters"
[60674] 2025-05-02 14:39:58.541 SMA amantzio at dynacom line:402LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"system_parameters"')::oid, 0)
[60674] 2025-05-02 14:39:58.541 SMA amantzio at dynacom line:403LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'system_parameters' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:58.541 SMA amantzio at dynacom line:404LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:405LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:406LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:407LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:408LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:409LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:410DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:411LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:412LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:413DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:414LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:415LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:416DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:417LOG: statement: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:418LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
[60674] 2025-05-02 14:39:58.542 SMA amantzio at dynacom line:419LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:420LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:421DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:422LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:423LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:424DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:425LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:426LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:427DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:428LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:429LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:430DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:431LOG: statement:
[60674] 2025-05-02 14:39:58.789 SMA amantzio at dynacom line:432LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:433LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:434LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:435DETAIL: statement: "", query: "show application_name"
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:436LOG: DB node id: 0 backend pid: 60726 statement: Parse: show application_name
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:437LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:438DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:439LOG: DB node id: 0 backend pid: 60726 statement: Bind: show application_name
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:440LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:441DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:442LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:443LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:444DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:445LOG: statement: show application_name
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:446LOG: DB node id: 0 backend pid: 60726 statement: Execute: show application_name
[60674] 2025-05-02 14:39:58.790 SMA amantzio at dynacom line:447LOG: Sync message from frontend.
[60674] 2025-05-02 14:39:58.791 SMA amantzio at dynacom line:448LOG: Parse message from frontend.
[60674] 2025-05-02 14:39:58.791 SMA amantzio at dynacom line:449DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:39:58.791 SMA amantzio at dynacom line:450LOG: DB node id: 0 backend pid: 60726 statement: SELECT COALESCE(pg_catalog.to_regclass('"fb_useroptions"')::oid, 0)
[60674] 2025-05-02 14:39:58.791 SMA amantzio at dynacom line:451LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'fb_useroptions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[60674] 2025-05-02 14:39:58.792 SMA amantzio at dynacom line:452LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[60674] 2025-05-02 14:39:58.792 SMA amantzio at dynacom line:453LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relrowsecurity
[60674] 2025-05-02 14:39:58.792 SMA amantzio at dynacom line:454LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:39:58.792 SMA amantzio at dynacom line:455LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relpersistence = 'u'
[60674] 2025-05-02 14:39:58.792 SMA amantzio at dynacom line:456LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:39:58.792 SMA amantzio at dynacom line:457LOG: Bind message from frontend.
[60674] 2025-05-02 14:39:58.792 SMA amantzio at dynacom line:458DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:39:58.792 SMA amantzio at dynacom line:459LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:39:58.793 SMA amantzio at dynacom line:460LOG: Describe message from frontend.
[60674] 2025-05-02 14:39:58.793 SMA amantzio at dynacom line:461DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.793 SMA amantzio at dynacom line:462LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:39:58.793 SMA amantzio at dynacom line:463LOG: Execute message from frontend.
[60674] 2025-05-02 14:39:58.793 SMA amantzio at dynacom line:464DETAIL: portal: ""
[60674] 2025-05-02 14:39:58.793 SMA amantzio at dynacom line:465LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:39:58.793 SMA amantzio at dynacom line:466LOG: DB node id: 0 backend pid: 60726 statement: Execute: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:39:58.793 SMA amantzio at dynacom line:467LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:468LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:469DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:470LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:471LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:472DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:473LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:474LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:475DETAIL: portal: ""
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:476LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:477LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:478DETAIL: portal: ""
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:479LOG: statement:
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:480LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:481LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:482LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:483DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:484LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:485LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:486DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:487LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:488LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:489DETAIL: portal: ""
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:490LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:491LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:492DETAIL: portal: ""
[60674] 2025-05-02 14:40:04.420 SMA amantzio at dynacom line:493LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:04.421 SMA amantzio at dynacom line:494LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:04.421 SMA amantzio at dynacom line:495LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:496LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:497DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:498LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:499LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:500DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:501LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:502LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:503DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:504LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:505LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:506DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:507LOG: statement:
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:508LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:509LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:510LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:511DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:512LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:513LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:514DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:515LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:516LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:517DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:518LOG: statement: BEGIN
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:519LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:520LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:05.092 SMA amantzio at dynacom line:521DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:522LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:523LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:524DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:525LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:526LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:527DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:528LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:529LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:530DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:531LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:532LOG: fetch from memory cache
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:533DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:40:05.093 SMA amantzio at dynacom line:534LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:535LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:536DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:537LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:538LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:539DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:540LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:541LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:542DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:543LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:544LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:545DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:546LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:547LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:05.094 SMA amantzio at dynacom line:548LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:05.096 SMA amantzio at dynacom line:549LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:05.096 SMA amantzio at dynacom line:550DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:551LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:552LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:553LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:554DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:555LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:556LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:557DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:558LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:559LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:560DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:561LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:562LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:563LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:564LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:565LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:566DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767525,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:567LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767525,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:568LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:569DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:570LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767525,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:571LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:572DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:573LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:574LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:575DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:576LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767525,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:577LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767525,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:05.097 SMA amantzio at dynacom line:578LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:05.101 SMA amantzio at dynacom line:579LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:05.101 SMA amantzio at dynacom line:580DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:40:05.101 SMA amantzio at dynacom line:581LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:40:05.101 SMA amantzio at dynacom line:582LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:05.101 SMA amantzio at dynacom line:583DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:05.101 SMA amantzio at dynacom line:584LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:40:05.101 SMA amantzio at dynacom line:585LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:05.101 SMA amantzio at dynacom line:586DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.101 SMA amantzio at dynacom line:587LOG: statement: COMMIT
[60674] 2025-05-02 14:40:05.101 SMA amantzio at dynacom line:588LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:40:05.101 SMA amantzio at dynacom line:589LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:590LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:591DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:592LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:593LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:594DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:595LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:596LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:597DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:598LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:599LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:600DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:601LOG: statement:
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:602LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:603LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:604LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:605DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:606LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:607LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:608DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:609LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:610LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:611DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:612LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:613LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:614DETAIL: portal: ""
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:615LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:616LOG: fetch from memory cache
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:617DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:40:05.143 SMA amantzio at dynacom line:618LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:619LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:620DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:621LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:622LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:623DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:624LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:625LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:626DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:627LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:628LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:629DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:630LOG: statement:
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:631LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:07.159 SMA amantzio at dynacom line:632LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:633LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:634DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:635LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:636LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:637DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:638LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:639LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:640DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:641LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:642LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:643DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:644LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:645LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:07.160 SMA amantzio at dynacom line:646LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:647LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:648DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:649LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:650LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:651DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:652LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:653LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:654DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:655LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:656LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:657DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:658LOG: statement:
[60674] 2025-05-02 14:40:07.821 SMA amantzio at dynacom line:659LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:660LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:661LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:662DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:663LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:664LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:665DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:666LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:667LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:668DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:669LOG: statement: BEGIN
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:670LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:671LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:672DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:673LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:674LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:675DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:676LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:677LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:678DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:679LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:680LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:681DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.822 SMA amantzio at dynacom line:682LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:07.823 SMA amantzio at dynacom line:683LOG: fetch from memory cache
[60674] 2025-05-02 14:40:07.823 SMA amantzio at dynacom line:684DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:40:07.823 SMA amantzio at dynacom line:685LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:07.823 SMA amantzio at dynacom line:686LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:07.823 SMA amantzio at dynacom line:687DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:40:07.823 SMA amantzio at dynacom line:688LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:40:07.823 SMA amantzio at dynacom line:689LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:40:07.823 SMA amantzio at dynacom line:690LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:07.823 SMA amantzio at dynacom line:691LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:07.823 SMA amantzio at dynacom line:692DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:693LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:694LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:695DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:696LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:697LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:698DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:699LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:700LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:701LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:702LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:703DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:704LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:705LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:706LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:707DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:708LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:709LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:710DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:711LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:712LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:713DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.824 SMA amantzio at dynacom line:714LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:07.825 SMA amantzio at dynacom line:715LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:07.825 SMA amantzio at dynacom line:716LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:717LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:718DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:719LOG: DB node id: 0 backend pid: 60726 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND (c.relkind = 'v' OR c.relkind = 'm')
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:720LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:721LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:722DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:723LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:724LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:725DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:726LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:727LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:728DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:729LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:730LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:07.826 SMA amantzio at dynacom line:731LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:732LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:733DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:734LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:735LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:736DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:737LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:738LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:739DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:740LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:741LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:742DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:743LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:744LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:07.827 SMA amantzio at dynacom line:745LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:746LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:747DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:748LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:749LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:750DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:751LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:752LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:753DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:754LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:755LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:756DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:757LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:758LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:07.880 SMA amantzio at dynacom line:759LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:760LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:761DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:762LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:763LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:764DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:765LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:766LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:767DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:768LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:769LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:770DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:771LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:772LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:07.882 SMA amantzio at dynacom line:773LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:07.938 SMA amantzio at dynacom line:774LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:07.938 SMA amantzio at dynacom line:775DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:40:07.938 SMA amantzio at dynacom line:776LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:40:07.938 SMA amantzio at dynacom line:777LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:07.938 SMA amantzio at dynacom line:778DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:07.938 SMA amantzio at dynacom line:779LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:40:07.938 SMA amantzio at dynacom line:780LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:07.938 SMA amantzio at dynacom line:781DETAIL: portal: ""
[60674] 2025-05-02 14:40:07.938 SMA amantzio at dynacom line:782LOG: statement: COMMIT
[60674] 2025-05-02 14:40:07.938 SMA amantzio at dynacom line:783LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:40:07.938 SMA amantzio at dynacom line:784LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:785LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:786DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:787LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:788LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:789DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:790LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:791LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:792DETAIL: portal: ""
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:793LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:794LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:795DETAIL: portal: ""
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:796LOG: statement:
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:797LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:798LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:799LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:800DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:801LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:802LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:803DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:804LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:805LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:806DETAIL: portal: ""
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:807LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:808LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:809DETAIL: portal: ""
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:810LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:811LOG: fetch from memory cache
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:812DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:40:08.097 SMA amantzio at dynacom line:813LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:814LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:815DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:816LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:817LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:818DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:819LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:820LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:821DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:822LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:823LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:824DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:825LOG: statement:
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:826LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:827LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:828LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:829DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:830LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:831LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:832DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:833LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:834LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:835DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:836LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:837LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:12.114 SMA amantzio at dynacom line:838DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.115 SMA amantzio at dynacom line:839LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:12.115 SMA amantzio at dynacom line:840LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:12.115 SMA amantzio at dynacom line:841LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:842LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:843DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:844LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:845LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:846DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:847LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:848LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:849DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:850LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:851LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:852DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:853LOG: statement:
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:854LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:855LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:856LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:857DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:858LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:859LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:860DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:861LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:862LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:863DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:864LOG: statement: BEGIN
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:865LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:866LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:867DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:868LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:869LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:870DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:871LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:872LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:873DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:874LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:875LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:876DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.762 SMA amantzio at dynacom line:877LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:12.763 SMA amantzio at dynacom line:878LOG: fetch from memory cache
[60674] 2025-05-02 14:40:12.763 SMA amantzio at dynacom line:879DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:40:12.763 SMA amantzio at dynacom line:880LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:12.763 SMA amantzio at dynacom line:881LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:12.763 SMA amantzio at dynacom line:882DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:40:12.763 SMA amantzio at dynacom line:883LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:12.763 SMA amantzio at dynacom line:884LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:885DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:886LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:887LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:888DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:889LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:890LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:891DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:892LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:893LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:894LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:895LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:896DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:897LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:898LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:899DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:900LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:901LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:902DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:903LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:904LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:905DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:906LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:907LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:12.764 SMA amantzio at dynacom line:908LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:909LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:910DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767526,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:911LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767526,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:912LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:913DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:914LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767526,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:915LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:916DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:917LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:918LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:919DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:920LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767526,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:921LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767526,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:12.765 SMA amantzio at dynacom line:922LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:12.781 SMA amantzio at dynacom line:923LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:12.781 SMA amantzio at dynacom line:924DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:40:12.781 SMA amantzio at dynacom line:925LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:40:12.781 SMA amantzio at dynacom line:926LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:12.781 SMA amantzio at dynacom line:927DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:12.781 SMA amantzio at dynacom line:928LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:40:12.781 SMA amantzio at dynacom line:929LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:12.781 SMA amantzio at dynacom line:930DETAIL: portal: ""
[60674] 2025-05-02 14:40:12.781 SMA amantzio at dynacom line:931LOG: statement: COMMIT
[60674] 2025-05-02 14:40:12.781 SMA amantzio at dynacom line:932LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:40:12.781 SMA amantzio at dynacom line:933LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:12.806 SMA amantzio at dynacom line:934LOG: error while deleting item from shmem cache, item: 130 was already deleted
[60674] 2025-05-02 14:40:12.806 SMA amantzio at dynacom line:935LOG: error while deleting item from shmem cache, item: 132 was already deleted
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:936LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:937DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:938LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:939LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:940DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:941LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:942LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:943DETAIL: portal: ""
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:944LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:945LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:946DETAIL: portal: ""
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:947LOG: statement:
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:948LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:13.150 SMA amantzio at dynacom line:949LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:950LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:951DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:952LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:953LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:954DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:955LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:956LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:957DETAIL: portal: ""
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:958LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:959LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:960DETAIL: portal: ""
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:961LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:962LOG: fetch from memory cache
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:963DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:40:13.151 SMA amantzio at dynacom line:964LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:15.335 SMA amantzio at dynacom line:965LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:15.335 SMA amantzio at dynacom line:966DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:15.335 SMA amantzio at dynacom line:967LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:15.335 SMA amantzio at dynacom line:968LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:15.335 SMA amantzio at dynacom line:969DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:970LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:971LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:972DETAIL: portal: ""
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:973LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:974LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:975DETAIL: portal: ""
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:976LOG: statement:
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:977LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:978LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:979LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:980DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:981LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:982LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:983DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:984LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:985LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:986DETAIL: portal: ""
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:987LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:988LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:989DETAIL: portal: ""
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:990LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:991LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:15.336 SMA amantzio at dynacom line:992LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:993LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:994DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:995LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:996LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:997DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:998LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:999LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:1000DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:1001LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:1002LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:1003DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:1004LOG: statement:
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:1005LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:16.064 SMA amantzio at dynacom line:1006LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1007LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1008DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1009LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1010LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1011DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1012LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1013LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1014DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1015LOG: statement: BEGIN
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1016LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1017LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1018DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1019LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1020LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1021DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1022LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1023LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1024DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1025LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1026LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1027DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1028LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1029LOG: fetch from memory cache
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1030DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:40:16.065 SMA amantzio at dynacom line:1031LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1032LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1033DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1034LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1035LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1036DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1037LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1038LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1039DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1040LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1041LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1042DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1043LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1044LOG: fetch from memory cache
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1045DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:40:16.066 SMA amantzio at dynacom line:1046LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1047LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1048DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1049LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1050LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1051DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1052LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1053LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1054DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1055LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1056LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1057DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1058LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1059LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1060LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1061LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1062DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1063LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1064LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1065DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1066LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1067LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1068DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1069LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1070LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1071DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1072LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1073LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:16.067 SMA amantzio at dynacom line:1074LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1075LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1076DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1077LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1078LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1079DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1080LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1081LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1082DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1083LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1084LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1085DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1086LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1087LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:16.068 SMA amantzio at dynacom line:1088LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1089LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1090DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1091LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1092LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1093DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1094LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1095LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1096DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1097LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1098LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1099DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1100LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1101LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:16.117 SMA amantzio at dynacom line:1102LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1103LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1104DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1105LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1106LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1107DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1108LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1109LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1110DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1111LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1112LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1113DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1114LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1115LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:16.118 SMA amantzio at dynacom line:1116LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1117LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1118DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1119LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1120LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1121DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1122LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1123LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1124DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1125LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1126LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1127DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1128LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1129LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:16.162 SMA amantzio at dynacom line:1130LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1131LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1132DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1133LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1134LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1135DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1136LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1137LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1138DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1139LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1140LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1141DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1142LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1143LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:16.163 SMA amantzio at dynacom line:1144LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.211 SMA amantzio at dynacom line:1145LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.211 SMA amantzio at dynacom line:1146DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:40:16.211 SMA amantzio at dynacom line:1147LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:40:16.211 SMA amantzio at dynacom line:1148LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.211 SMA amantzio at dynacom line:1149DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.211 SMA amantzio at dynacom line:1150LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:40:16.211 SMA amantzio at dynacom line:1151LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.211 SMA amantzio at dynacom line:1152DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.211 SMA amantzio at dynacom line:1153LOG: statement: COMMIT
[60674] 2025-05-02 14:40:16.211 SMA amantzio at dynacom line:1154LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:40:16.211 SMA amantzio at dynacom line:1155LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1156LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1157DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1158LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1159LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1160DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1161LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1162LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1163DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1164LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1165LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1166DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1167LOG: statement:
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1168LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1169LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1170LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1171DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1172LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1173LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1174DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1175LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1176LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1177DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1178LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1179LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1180DETAIL: portal: ""
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1181LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1182LOG: fetch from memory cache
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1183DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:40:16.432 SMA amantzio at dynacom line:1184LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:23.609 SMA amantzio at dynacom line:1185LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:23.609 SMA amantzio at dynacom line:1186DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1187LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1188LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1189DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1190LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1191LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1192DETAIL: portal: ""
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1193LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1194LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1195DETAIL: portal: ""
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1196LOG: statement:
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1197LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1198LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1199LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1200DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1201LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1202LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1203DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1204LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1205LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1206DETAIL: portal: ""
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1207LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1208LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1209DETAIL: portal: ""
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1210LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1211LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:23.610 SMA amantzio at dynacom line:1212LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1213LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1214DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1215LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1216LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1217DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1218LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1219LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1220DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1221LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1222LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1223DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1224LOG: statement:
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1225LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1226LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1227LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1228DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1229LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1230LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1231DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:24.339 SMA amantzio at dynacom line:1232LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1233LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1234DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1235LOG: statement: BEGIN
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1236LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1237LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1238DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1239LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1240LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1241DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1242LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1243LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1244DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1245LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1246LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1247DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1248LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1249LOG: fetch from memory cache
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1250DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1251LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1252LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1253DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1254LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1255LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1256DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1257LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1258LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1259DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1260LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1261LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1262DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1263LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1264LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:24.340 SMA amantzio at dynacom line:1265LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1266LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1267DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1268LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1269LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1270DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1271LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1272LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1273DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1274LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1275LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1276DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1277LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1278LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1279LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1280LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1281DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767527,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1282LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767527,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1283LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1284DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1285LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767527,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1286LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1287DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1288LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1289LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1290DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1291LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767527,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1292LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767527,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:24.341 SMA amantzio at dynacom line:1293LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:24.345 SMA amantzio at dynacom line:1294LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:24.345 SMA amantzio at dynacom line:1295DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:40:24.346 SMA amantzio at dynacom line:1296LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:40:24.346 SMA amantzio at dynacom line:1297LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:24.346 SMA amantzio at dynacom line:1298DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:24.346 SMA amantzio at dynacom line:1299LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:40:24.346 SMA amantzio at dynacom line:1300LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:24.346 SMA amantzio at dynacom line:1301DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.346 SMA amantzio at dynacom line:1302LOG: statement: COMMIT
[60674] 2025-05-02 14:40:24.346 SMA amantzio at dynacom line:1303LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:40:24.346 SMA amantzio at dynacom line:1304LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:24.358 SMA amantzio at dynacom line:1305LOG: error while deleting item from shmem cache, item: 134 was already deleted
[60674] 2025-05-02 14:40:24.358 SMA amantzio at dynacom line:1306LOG: error while deleting item from shmem cache, item: 136 was already deleted
[60674] 2025-05-02 14:40:24.358 SMA amantzio at dynacom line:1307LOG: error while deleting item from shmem cache, item: 138 was already deleted
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1308LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1309DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1310LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1311LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1312DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1313LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1314LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1315DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1316LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1317LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1318DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1319LOG: statement:
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1320LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1321LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1322LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:24.839 SMA amantzio at dynacom line:1323DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1324LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1325LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1326DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1327LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1328LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1329DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1330LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1331LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1332DETAIL: portal: ""
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1333LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1334LOG: fetch from memory cache
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1335DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:40:24.840 SMA amantzio at dynacom line:1336LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1337LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1338DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1339LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1340LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1341DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1342LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1343LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1344DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1345LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1346LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1347DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1348LOG: statement:
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1349LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1350LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1351LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.055 SMA amantzio at dynacom line:1352DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:40:27.056 SMA amantzio at dynacom line:1353LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:27.056 SMA amantzio at dynacom line:1354LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.056 SMA amantzio at dynacom line:1355DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.056 SMA amantzio at dynacom line:1356LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:27.056 SMA amantzio at dynacom line:1357LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.056 SMA amantzio at dynacom line:1358DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.056 SMA amantzio at dynacom line:1359LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.056 SMA amantzio at dynacom line:1360LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.056 SMA amantzio at dynacom line:1361DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.056 SMA amantzio at dynacom line:1362LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:27.056 SMA amantzio at dynacom line:1363LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:27.056 SMA amantzio at dynacom line:1364LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1365LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1366DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1367LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1368LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1369DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1370LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1371LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1372DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1373LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1374LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1375DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1376LOG: statement:
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1377LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:27.764 SMA amantzio at dynacom line:1378LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1379LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1380DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1381LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1382LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1383DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1384LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1385LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1386DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1387LOG: statement: BEGIN
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1388LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1389LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1390DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1391LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1392LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1393DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1394LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1395LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1396DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1397LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1398LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1399DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.765 SMA amantzio at dynacom line:1400LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1401LOG: fetch from memory cache
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1402DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1403LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1404LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1405DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1406LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1407LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1408DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1409LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1410LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1411DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1412LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1413LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1414DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.766 SMA amantzio at dynacom line:1415LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1416LOG: fetch from memory cache
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1417DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1418LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1419LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1420DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1421LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1422LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1423DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1424LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1425LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1426DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1427LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1428LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1429DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1430LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1431LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1432LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1433LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1434DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1435LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1436LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1437DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1438LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1439LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1440DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1441LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1442LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1443DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1444LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1445LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.767 SMA amantzio at dynacom line:1446LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1447LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1448DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1449LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1450LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1451DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1452LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1453LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1454DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1455LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1456LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1457DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1458LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1459LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.768 SMA amantzio at dynacom line:1460LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1461LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1462DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1463LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1464LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1465DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1466LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1467LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1468DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1469LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1470LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1471DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1472LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1473LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.825 SMA amantzio at dynacom line:1474LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1475LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1476DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1477LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1478LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1479DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1480LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1481LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1482DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1483LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1484LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1485DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1486LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1487LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.826 SMA amantzio at dynacom line:1488LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1489LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1490DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1491LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1492LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1493DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1494LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1495LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1496DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1497LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1498LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1499DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1500LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1501LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.871 SMA amantzio at dynacom line:1502LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1503LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1504DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1505LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1506LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1507DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1508LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1509LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1510DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1511LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1512LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1513DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1514LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1515LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.872 SMA amantzio at dynacom line:1516LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1517LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1518DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1519LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1520LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1521DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1522LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1523LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1524DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1525LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1526LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1527DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1528LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1529LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:27.916 SMA amantzio at dynacom line:1530LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1531LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1532DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1533LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1534LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1535DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1536LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1537LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1538DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1539LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1540LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1541DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1542LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1543LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:27.917 SMA amantzio at dynacom line:1544LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:27.967 SMA amantzio at dynacom line:1545LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:27.967 SMA amantzio at dynacom line:1546DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:40:27.967 SMA amantzio at dynacom line:1547LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:40:27.967 SMA amantzio at dynacom line:1548LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:27.967 SMA amantzio at dynacom line:1549DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:27.967 SMA amantzio at dynacom line:1550LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:40:27.967 SMA amantzio at dynacom line:1551LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:27.967 SMA amantzio at dynacom line:1552DETAIL: portal: ""
[60674] 2025-05-02 14:40:27.967 SMA amantzio at dynacom line:1553LOG: statement: COMMIT
[60674] 2025-05-02 14:40:27.967 SMA amantzio at dynacom line:1554LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:40:27.967 SMA amantzio at dynacom line:1555LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1556LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1557DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1558LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1559LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1560DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1561LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1562LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1563DETAIL: portal: ""
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1564LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1565LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1566DETAIL: portal: ""
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1567LOG: statement:
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1568LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:28.119 SMA amantzio at dynacom line:1569LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1570LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1571DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1572LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1573LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1574DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1575LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1576LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1577DETAIL: portal: ""
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1578LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1579LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1580DETAIL: portal: ""
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1581LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1582LOG: fetch from memory cache
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1583DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:40:28.120 SMA amantzio at dynacom line:1584LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1585LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1586DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1587LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1588LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1589DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1590LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1591LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1592DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1593LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1594LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1595DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1596LOG: statement:
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1597LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1598LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1599LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1600DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1601LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1602LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1603DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1604LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1605LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1606DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1607LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1608LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1609DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1610LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1611LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:32.048 SMA amantzio at dynacom line:1612LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1613LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1614DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1615LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1616LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1617DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1618LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1619LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1620DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1621LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1622LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1623DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1624LOG: statement:
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1625LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1626LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1627LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1628DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1629LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1630LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1631DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1632LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1633LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1634DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1635LOG: statement: BEGIN
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1636LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1637LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:32.783 SMA amantzio at dynacom line:1638DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1639LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1640LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1641DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1642LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1643LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1644DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1645LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1646LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1647DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1648LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1649LOG: fetch from memory cache
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1650DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1651LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1652LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1653DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1654LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1655LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1656DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1657LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1658LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1659DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1660LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1661LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1662DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1663LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1664LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:32.784 SMA amantzio at dynacom line:1665LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1666LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1667DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1668LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1669LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1670DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1671LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1672LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1673DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1674LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1675LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1676DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1677LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1678LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1679LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1680LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1681DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767528,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1682LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767528,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1683LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1684DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1685LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767528,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1686LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1687DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1688LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1689LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1690DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1691LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767528,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1692LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767528,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:32.785 SMA amantzio at dynacom line:1693LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:32.792 SMA amantzio at dynacom line:1694LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:32.792 SMA amantzio at dynacom line:1695DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:40:32.792 SMA amantzio at dynacom line:1696LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:40:32.792 SMA amantzio at dynacom line:1697LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:32.792 SMA amantzio at dynacom line:1698DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:32.792 SMA amantzio at dynacom line:1699LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:40:32.792 SMA amantzio at dynacom line:1700LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:32.792 SMA amantzio at dynacom line:1701DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.792 SMA amantzio at dynacom line:1702LOG: statement: COMMIT
[60674] 2025-05-02 14:40:32.792 SMA amantzio at dynacom line:1703LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:40:32.792 SMA amantzio at dynacom line:1704LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:32.808 SMA amantzio at dynacom line:1705LOG: error while deleting item from shmem cache, item: 140 was already deleted
[60674] 2025-05-02 14:40:32.808 SMA amantzio at dynacom line:1706LOG: error while deleting item from shmem cache, item: 142 was already deleted
[60674] 2025-05-02 14:40:32.808 SMA amantzio at dynacom line:1707LOG: error while deleting item from shmem cache, item: 144 was already deleted
[60674] 2025-05-02 14:40:32.808 SMA amantzio at dynacom line:1708LOG: error while deleting item from shmem cache, item: 146 was already deleted
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1709LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1710DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1711LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1712LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1713DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1714LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1715LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1716DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1717LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1718LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1719DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1720LOG: statement:
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1721LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1722LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1723LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1724DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1725LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1726LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1727DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1728LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1729LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1730DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1731LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1732LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1733DETAIL: portal: ""
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1734LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1735LOG: fetch from memory cache
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1736DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:40:32.900 SMA amantzio at dynacom line:1737LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1738LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1739DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1740LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1741LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1742DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1743LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1744LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1745DETAIL: portal: ""
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1746LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1747LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1748DETAIL: portal: ""
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1749LOG: statement:
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1750LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1751LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1752LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1753DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1754LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1755LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1756DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1757LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1758LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1759DETAIL: portal: ""
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1760LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1761LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1762DETAIL: portal: ""
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1763LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1764LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:39.585 SMA amantzio at dynacom line:1765LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1766LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1767DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1768LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1769LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1770DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1771LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1772LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1773DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1774LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1775LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1776DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1777LOG: statement:
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1778LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1779LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1780LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1781DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1782LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1783LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1784DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1785LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1786LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1787DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1788LOG: statement: BEGIN
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1789LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1790LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.220 SMA amantzio at dynacom line:1791DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1792LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1793LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1794DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1795LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1796LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1797DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1798LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1799LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1800DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1801LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1802LOG: fetch from memory cache
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1803DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1804LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1805LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.221 SMA amantzio at dynacom line:1806DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1807LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1808LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1809DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1810LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1811LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1812DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1813LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1814LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1815DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1816LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1817LOG: fetch from memory cache
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1818DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1819LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1820LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1821DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1822LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1823LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1824DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1825LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1826LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1827DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1828LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1829LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1830DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1831LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1832LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:40.222 SMA amantzio at dynacom line:1833LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1834LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1835DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1836LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1837LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1838DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1839LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1840LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1841DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1842LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1843LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1844DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1845LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1846LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.223 SMA amantzio at dynacom line:1847LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1848LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1849DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1850LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1851LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1852DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1853LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1854LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1855DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1856LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1857LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1858DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1859LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1860LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.224 SMA amantzio at dynacom line:1861LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1862LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1863DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1864LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1865LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1866DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1867LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1868LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1869DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1870LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1871LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1872DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1873LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1874LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.275 SMA amantzio at dynacom line:1875LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1876LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1877DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1878LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1879LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1880DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1881LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1882LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1883DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1884LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1885LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1886DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1887LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1888LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.276 SMA amantzio at dynacom line:1889LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1890LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1891DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1892LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1893LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1894DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1895LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1896LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1897DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1898LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1899LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1900DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1901LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1902LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.331 SMA amantzio at dynacom line:1903LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.332 SMA amantzio at dynacom line:1904LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1905DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1906LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1907LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1908DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1909LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1910LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1911DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1912LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1913LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1914DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1915LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1916LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.333 SMA amantzio at dynacom line:1917LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1918LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1919DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1920LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1921LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1922DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1923LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1924LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1925DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1926LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1927LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1928DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1929LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1930LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.384 SMA amantzio at dynacom line:1931LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1932LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1933DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1934LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1935LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1936DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1937LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1938LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1939DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1940LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1941LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1942DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1943LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1944LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.385 SMA amantzio at dynacom line:1945LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1946LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1947DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1948LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1949LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1950DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1951LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1952LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1953DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1954LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1955LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1956DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1957LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1958LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:40.439 SMA amantzio at dynacom line:1959LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1960LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1961DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1962LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1963LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1964DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1965LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1966LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1967DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1968LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1969LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1970DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1971LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1972LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:40.440 SMA amantzio at dynacom line:1973LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.489 SMA amantzio at dynacom line:1974LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.489 SMA amantzio at dynacom line:1975DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:40:40.489 SMA amantzio at dynacom line:1976LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:40:40.489 SMA amantzio at dynacom line:1977LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.489 SMA amantzio at dynacom line:1978DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.489 SMA amantzio at dynacom line:1979LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:40:40.489 SMA amantzio at dynacom line:1980LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.489 SMA amantzio at dynacom line:1981DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.489 SMA amantzio at dynacom line:1982LOG: statement: COMMIT
[60674] 2025-05-02 14:40:40.489 SMA amantzio at dynacom line:1983LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:40:40.489 SMA amantzio at dynacom line:1984LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1985LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1986DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1987LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1988LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1989DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1990LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1991LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1992DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1993LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1994LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1995DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1996LOG: statement:
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1997LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1998LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:1999LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2000DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2001LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2002LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2003DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2004LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2005LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2006DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2007LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2008LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2009DETAIL: portal: ""
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2010LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2011LOG: fetch from memory cache
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2012DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:40:40.616 SMA amantzio at dynacom line:2013LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2014LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2015DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2016LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2017LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2018DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2019LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2020LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2021DETAIL: portal: ""
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2022LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2023LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2024DETAIL: portal: ""
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2025LOG: statement:
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2026LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:44.840 SMA amantzio at dynacom line:2027LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2028LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2029DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2030LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2031LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2032DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2033LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2034LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2035DETAIL: portal: ""
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2036LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2037LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2038DETAIL: portal: ""
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2039LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2040LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:44.841 SMA amantzio at dynacom line:2041LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2042LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2043DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2044LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2045LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2046DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2047LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2048LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2049DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2050LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2051LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2052DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2053LOG: statement:
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2054LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2055LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2056LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2057DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2058LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2059LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2060DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2061LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2062LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2063DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2064LOG: statement: BEGIN
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2065LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2066LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:45.561 SMA amantzio at dynacom line:2067DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2068LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2069LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2070DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2071LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2072LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2073DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2074LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2075LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2076DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2077LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2078LOG: fetch from memory cache
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2079DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2080LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2081LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2082DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2083LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2084LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2085DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:45.562 SMA amantzio at dynacom line:2086LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:45.563 SMA amantzio at dynacom line:2087LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:45.563 SMA amantzio at dynacom line:2088DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.563 SMA amantzio at dynacom line:2089LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:45.563 SMA amantzio at dynacom line:2090LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:45.563 SMA amantzio at dynacom line:2091DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.563 SMA amantzio at dynacom line:2092LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:45.563 SMA amantzio at dynacom line:2093LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:45.563 SMA amantzio at dynacom line:2094LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2095LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2096DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2097LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2098LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2099DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2100LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2101LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2102DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2103LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2104LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2105DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2106LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2107LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2108LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2109LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2110DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767529,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2111LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767529,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2112LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2113DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2114LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767529,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2115LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2116DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2117LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2118LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2119DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2120LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767529,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2121LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767529,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:45.564 SMA amantzio at dynacom line:2122LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:45.568 SMA amantzio at dynacom line:2123LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:45.568 SMA amantzio at dynacom line:2124DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:40:45.568 SMA amantzio at dynacom line:2125LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:40:45.568 SMA amantzio at dynacom line:2126LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:45.568 SMA amantzio at dynacom line:2127DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:45.568 SMA amantzio at dynacom line:2128LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:40:45.568 SMA amantzio at dynacom line:2129LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:45.568 SMA amantzio at dynacom line:2130DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.568 SMA amantzio at dynacom line:2131LOG: statement: COMMIT
[60674] 2025-05-02 14:40:45.568 SMA amantzio at dynacom line:2132LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:40:45.568 SMA amantzio at dynacom line:2133LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:45.577 SMA amantzio at dynacom line:2134LOG: error while deleting item from shmem cache, item: 148 was already deleted
[60674] 2025-05-02 14:40:45.577 SMA amantzio at dynacom line:2135LOG: error while deleting item from shmem cache, item: 150 was already deleted
[60674] 2025-05-02 14:40:45.577 SMA amantzio at dynacom line:2136LOG: error while deleting item from shmem cache, item: 152 was already deleted
[60674] 2025-05-02 14:40:45.577 SMA amantzio at dynacom line:2137LOG: error while deleting item from shmem cache, item: 154 was already deleted
[60674] 2025-05-02 14:40:45.577 SMA amantzio at dynacom line:2138LOG: error while deleting item from shmem cache, item: 156 was already deleted
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2139LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2140DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2141LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2142LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2143DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2144LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2145LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2146DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2147LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2148LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2149DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2150LOG: statement:
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2151LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:45.731 SMA amantzio at dynacom line:2152LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2153LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2154DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2155LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2156LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2157DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2158LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2159LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2160DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2161LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2162LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2163DETAIL: portal: ""
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2164LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2165LOG: fetch from memory cache
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2166DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:40:45.732 SMA amantzio at dynacom line:2167LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.026 SMA amantzio at dynacom line:2168LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.026 SMA amantzio at dynacom line:2169DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:48.026 SMA amantzio at dynacom line:2170LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:48.026 SMA amantzio at dynacom line:2171LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.026 SMA amantzio at dynacom line:2172DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.026 SMA amantzio at dynacom line:2173LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:48.026 SMA amantzio at dynacom line:2174LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.026 SMA amantzio at dynacom line:2175DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.026 SMA amantzio at dynacom line:2176LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2177LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2178DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2179LOG: statement:
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2180LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2181LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2182LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2183DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2184LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2185LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2186DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2187LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2188LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2189DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2190LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2191LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2192DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2193LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2194LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:48.027 SMA amantzio at dynacom line:2195LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2196LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2197DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2198LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2199LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2200DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2201LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2202LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2203DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2204LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2205LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2206DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2207LOG: statement:
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2208LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2209LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2210LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2211DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2212LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2213LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2214DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2215LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2216LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2217DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2218LOG: statement: BEGIN
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2219LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2220LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2221DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2222LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2223LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2224DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2225LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2226LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2227DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2228LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2229LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2230DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.733 SMA amantzio at dynacom line:2231LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2232LOG: fetch from memory cache
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2233DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2234LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2235LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2236DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2237LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2238LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2239DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2240LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2241LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2242DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2243LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2244LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2245DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.734 SMA amantzio at dynacom line:2246LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2247LOG: fetch from memory cache
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2248DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2249LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2250LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2251DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2252LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2253LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2254DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2255LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2256LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2257DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2258LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2259LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2260DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2261LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2262LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2263LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2264LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2265DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2266LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2267LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2268DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2269LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2270LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2271DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2272LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2273LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2274DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2275LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2276LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.735 SMA amantzio at dynacom line:2277LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2278LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2279DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2280LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2281LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2282DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2283LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2284LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2285DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2286LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2287LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2288DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2289LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2290LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.736 SMA amantzio at dynacom line:2291LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.786 SMA amantzio at dynacom line:2292LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.786 SMA amantzio at dynacom line:2293DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:48.787 SMA amantzio at dynacom line:2294LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.787 SMA amantzio at dynacom line:2295LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.787 SMA amantzio at dynacom line:2296DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.787 SMA amantzio at dynacom line:2297LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.787 SMA amantzio at dynacom line:2298LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.787 SMA amantzio at dynacom line:2299DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.787 SMA amantzio at dynacom line:2300LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.787 SMA amantzio at dynacom line:2301LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.787 SMA amantzio at dynacom line:2302DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.787 SMA amantzio at dynacom line:2303LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.787 SMA amantzio at dynacom line:2304LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.787 SMA amantzio at dynacom line:2305LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2306LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2307DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2308LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2309LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2310DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2311LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2312LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2313DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2314LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2315LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2316DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2317LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2318LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.788 SMA amantzio at dynacom line:2319LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2320LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2321DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2322LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2323LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2324DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2325LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2326LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2327DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2328LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2329LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2330DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2331LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2332LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.835 SMA amantzio at dynacom line:2333LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2334LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2335DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2336LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2337LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2338DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2339LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2340LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2341DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2342LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2343LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2344DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2345LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2346LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.836 SMA amantzio at dynacom line:2347LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2348LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2349DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2350LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2351LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2352DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2353LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2354LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2355DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2356LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2357LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2358DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2359LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.885 SMA amantzio at dynacom line:2360LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.886 SMA amantzio at dynacom line:2361LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.886 SMA amantzio at dynacom line:2362LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.886 SMA amantzio at dynacom line:2363DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:48.886 SMA amantzio at dynacom line:2364LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.887 SMA amantzio at dynacom line:2365LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.887 SMA amantzio at dynacom line:2366DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.887 SMA amantzio at dynacom line:2367LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.887 SMA amantzio at dynacom line:2368LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.887 SMA amantzio at dynacom line:2369DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.887 SMA amantzio at dynacom line:2370LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.887 SMA amantzio at dynacom line:2371LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.887 SMA amantzio at dynacom line:2372DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.887 SMA amantzio at dynacom line:2373LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.887 SMA amantzio at dynacom line:2374LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.887 SMA amantzio at dynacom line:2375LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.936 SMA amantzio at dynacom line:2376LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.936 SMA amantzio at dynacom line:2377DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:48.937 SMA amantzio at dynacom line:2378LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.937 SMA amantzio at dynacom line:2379LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.937 SMA amantzio at dynacom line:2380DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.937 SMA amantzio at dynacom line:2381LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.937 SMA amantzio at dynacom line:2382LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.937 SMA amantzio at dynacom line:2383DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.937 SMA amantzio at dynacom line:2384LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.937 SMA amantzio at dynacom line:2385LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.937 SMA amantzio at dynacom line:2386DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.937 SMA amantzio at dynacom line:2387LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.937 SMA amantzio at dynacom line:2388LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.937 SMA amantzio at dynacom line:2389LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2390LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2391DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2392LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2393LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2394DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2395LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2396LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2397DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2398LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2399LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2400DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2401LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2402LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.938 SMA amantzio at dynacom line:2403LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2404LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2405DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2406LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2407LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2408DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2409LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2410LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2411DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2412LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2413LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2414DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2415LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2416LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:48.992 SMA amantzio at dynacom line:2417LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2418LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2419DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2420LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2421LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2422DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2423LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2424LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2425DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2426LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2427LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2428DETAIL: portal: ""
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2429LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2430LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:48.993 SMA amantzio at dynacom line:2431LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:49.037 SMA amantzio at dynacom line:2432LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:49.037 SMA amantzio at dynacom line:2433DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:40:49.037 SMA amantzio at dynacom line:2434LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:40:49.037 SMA amantzio at dynacom line:2435LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:49.037 SMA amantzio at dynacom line:2436DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:49.037 SMA amantzio at dynacom line:2437LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:40:49.037 SMA amantzio at dynacom line:2438LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:49.037 SMA amantzio at dynacom line:2439DETAIL: portal: ""
[60674] 2025-05-02 14:40:49.037 SMA amantzio at dynacom line:2440LOG: statement: COMMIT
[60674] 2025-05-02 14:40:49.037 SMA amantzio at dynacom line:2441LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:40:49.037 SMA amantzio at dynacom line:2442LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2443LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2444DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2445LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2446LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2447DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2448LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2449LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2450DETAIL: portal: ""
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2451LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2452LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2453DETAIL: portal: ""
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2454LOG: statement:
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2455LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2456LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2457LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2458DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2459LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2460LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2461DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2462LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2463LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2464DETAIL: portal: ""
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2465LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2466LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2467DETAIL: portal: ""
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2468LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2469LOG: fetch from memory cache
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2470DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:40:49.047 SMA amantzio at dynacom line:2471LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2472LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2473DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2474LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2475LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2476DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2477LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2478LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2479DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2480LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2481LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2482DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2483LOG: statement:
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2484LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2485LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2486LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2487DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2488LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2489LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2490DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2491LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2492LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2493DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2494LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2495LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2496DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2497LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2498LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:53.249 SMA amantzio at dynacom line:2499LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2500LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2501DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2502LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2503LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2504DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2505LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2506LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2507DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2508LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2509LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2510DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2511LOG: statement:
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2512LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:53.970 SMA amantzio at dynacom line:2513LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2514LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2515DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2516LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2517LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2518DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2519LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2520LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2521DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2522LOG: statement: BEGIN
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2523LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2524LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2525DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2526LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2527LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2528DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2529LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2530LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2531DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2532LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2533LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2534DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2535LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2536LOG: fetch from memory cache
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2537DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:40:53.971 SMA amantzio at dynacom line:2538LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2539LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2540DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2541LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2542LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2543DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2544LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2545LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2546DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2547LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2548LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2549DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2550LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2551LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2552LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2553LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:53.972 SMA amantzio at dynacom line:2554DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2555LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2556LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2557DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2558LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2559LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2560DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2561LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2562LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2563DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2564LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2565LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2566LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2567LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2568DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767530,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2569LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767530,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2570LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2571DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2572LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767530,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2573LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2574DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2575LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2576LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2577DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2578LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767530,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2579LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767530,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:40:53.973 SMA amantzio at dynacom line:2580LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:53.976 SMA amantzio at dynacom line:2581LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:53.976 SMA amantzio at dynacom line:2582DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:40:53.976 SMA amantzio at dynacom line:2583LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:40:53.976 SMA amantzio at dynacom line:2584LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:53.976 SMA amantzio at dynacom line:2585DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:53.976 SMA amantzio at dynacom line:2586LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:40:53.976 SMA amantzio at dynacom line:2587LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:53.976 SMA amantzio at dynacom line:2588DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.976 SMA amantzio at dynacom line:2589LOG: statement: COMMIT
[60674] 2025-05-02 14:40:53.976 SMA amantzio at dynacom line:2590LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:40:53.976 SMA amantzio at dynacom line:2591LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:53.979 SMA amantzio at dynacom line:2592LOG: error while deleting item from shmem cache, item: 158 was already deleted
[60674] 2025-05-02 14:40:53.979 SMA amantzio at dynacom line:2593LOG: error while deleting item from shmem cache, item: 160 was already deleted
[60674] 2025-05-02 14:40:53.979 SMA amantzio at dynacom line:2594LOG: error while deleting item from shmem cache, item: 162 was already deleted
[60674] 2025-05-02 14:40:53.979 SMA amantzio at dynacom line:2595LOG: error while deleting item from shmem cache, item: 164 was already deleted
[60674] 2025-05-02 14:40:53.979 SMA amantzio at dynacom line:2596LOG: error while deleting item from shmem cache, item: 166 was already deleted
[60674] 2025-05-02 14:40:53.979 SMA amantzio at dynacom line:2597LOG: error while deleting item from shmem cache, item: 168 was already deleted
[60674] 2025-05-02 14:40:53.988 SMA amantzio at dynacom line:2598LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:53.988 SMA amantzio at dynacom line:2599DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:53.988 SMA amantzio at dynacom line:2600LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:53.988 SMA amantzio at dynacom line:2601LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:53.988 SMA amantzio at dynacom line:2602DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:53.988 SMA amantzio at dynacom line:2603LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:53.988 SMA amantzio at dynacom line:2604LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:53.988 SMA amantzio at dynacom line:2605DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2606LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2607LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2608DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2609LOG: statement:
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2610LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2611LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2612LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2613DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2614LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2615LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2616DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2617LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2618LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2619DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2620LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2621LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2622DETAIL: portal: ""
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2623LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2624LOG: fetch from memory cache
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2625DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:40:53.989 SMA amantzio at dynacom line:2626LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2627LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2628DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2629LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2630LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2631DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2632LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2633LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2634DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2635LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2636LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2637DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2638LOG: statement:
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2639LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2640LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2641LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2642DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2643LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2644LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2645DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2646LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2647LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2648DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2649LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2650LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2651DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2652LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2653LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:40:57.027 SMA amantzio at dynacom line:2654LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2655LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2656DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2657LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2658LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2659DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2660LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2661LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2662DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2663LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2664LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2665DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2666LOG: statement:
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2667LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2668LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2669LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2670DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2671LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2672LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.735 SMA amantzio at dynacom line:2673DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2674LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2675LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2676DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2677LOG: statement: BEGIN
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2678LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2679LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2680DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2681LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2682LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2683DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2684LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2685LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2686DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2687LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2688LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2689DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2690LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2691LOG: fetch from memory cache
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2692DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2693LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2694LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2695DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2696LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2697LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2698DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2699LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2700LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2701DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.736 SMA amantzio at dynacom line:2702LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2703LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2704DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2705LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2706LOG: fetch from memory cache
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2707DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2708LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2709LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2710DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2711LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2712LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2713DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2714LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2715LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2716DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2717LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2718LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2719DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2720LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2721LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2722LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2723LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2724DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2725LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2726LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.737 SMA amantzio at dynacom line:2727DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2728LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2729LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2730DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2731LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2732LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2733DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2734LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2735LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2736LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2737LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2738DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2739LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2740LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2741DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2742LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2743LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2744DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2745LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2746LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2747DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2748LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2749LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.738 SMA amantzio at dynacom line:2750LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2751LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2752DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2753LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2754LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2755DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2756LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2757LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2758DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2759LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2760LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2761DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2762LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2763LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.787 SMA amantzio at dynacom line:2764LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2765LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2766DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2767LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2768LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2769DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2770LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2771LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2772DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2773LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2774LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2775DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2776LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2777LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.788 SMA amantzio at dynacom line:2778LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.832 SMA amantzio at dynacom line:2779LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.832 SMA amantzio at dynacom line:2780DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:57.833 SMA amantzio at dynacom line:2781LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.833 SMA amantzio at dynacom line:2782LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.833 SMA amantzio at dynacom line:2783DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.833 SMA amantzio at dynacom line:2784LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.833 SMA amantzio at dynacom line:2785LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.833 SMA amantzio at dynacom line:2786DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.833 SMA amantzio at dynacom line:2787LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.833 SMA amantzio at dynacom line:2788LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.833 SMA amantzio at dynacom line:2789DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.833 SMA amantzio at dynacom line:2790LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.833 SMA amantzio at dynacom line:2791LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.833 SMA amantzio at dynacom line:2792LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2793LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2794DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2795LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2796LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2797DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2798LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2799LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2800DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2801LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2802LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2803DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2804LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2805LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.834 SMA amantzio at dynacom line:2806LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2807LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2808DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2809LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2810LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2811DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2812LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2813LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2814DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2815LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2816LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2817DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2818LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2819LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.881 SMA amantzio at dynacom line:2820LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2821LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2822DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2823LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2824LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2825DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2826LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2827LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2828DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2829LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2830LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2831DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2832LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2833LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.882 SMA amantzio at dynacom line:2834LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.928 SMA amantzio at dynacom line:2835LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2836DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2837LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2838LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2839DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2840LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2841LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2842DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2843LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2844LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2845DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2846LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2847LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.929 SMA amantzio at dynacom line:2848LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2849LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2850DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2851LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2852LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2853DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2854LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2855LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2856DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2857LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2858LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2859DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2860LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2861LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.930 SMA amantzio at dynacom line:2862LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2863LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2864DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2865LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2866LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2867DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2868LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2869LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2870DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2871LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2872LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2873DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2874LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2875LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:57.973 SMA amantzio at dynacom line:2876LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:57.974 SMA amantzio at dynacom line:2877LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:57.974 SMA amantzio at dynacom line:2878DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:57.974 SMA amantzio at dynacom line:2879LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.974 SMA amantzio at dynacom line:2880LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:57.975 SMA amantzio at dynacom line:2881DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:57.975 SMA amantzio at dynacom line:2882LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.975 SMA amantzio at dynacom line:2883LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:57.975 SMA amantzio at dynacom line:2884DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.975 SMA amantzio at dynacom line:2885LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:57.975 SMA amantzio at dynacom line:2886LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:57.975 SMA amantzio at dynacom line:2887DETAIL: portal: ""
[60674] 2025-05-02 14:40:57.975 SMA amantzio at dynacom line:2888LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.975 SMA amantzio at dynacom line:2889LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:57.975 SMA amantzio at dynacom line:2890LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2891LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2892DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2893LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2894LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2895DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2896LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2897LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2898DETAIL: portal: ""
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2899LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2900LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2901DETAIL: portal: ""
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2902LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2903LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:40:58.018 SMA amantzio at dynacom line:2904LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2905LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2906DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2907LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2908LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2909DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2910LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2911LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2912DETAIL: portal: ""
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2913LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2914LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2915DETAIL: portal: ""
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2916LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2917LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:40:58.019 SMA amantzio at dynacom line:2918LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:58.068 SMA amantzio at dynacom line:2919LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:58.068 SMA amantzio at dynacom line:2920DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:40:58.068 SMA amantzio at dynacom line:2921LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:40:58.068 SMA amantzio at dynacom line:2922LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:58.068 SMA amantzio at dynacom line:2923DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:58.068 SMA amantzio at dynacom line:2924LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:40:58.068 SMA amantzio at dynacom line:2925LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:58.068 SMA amantzio at dynacom line:2926DETAIL: portal: ""
[60674] 2025-05-02 14:40:58.068 SMA amantzio at dynacom line:2927LOG: statement: COMMIT
[60674] 2025-05-02 14:40:58.068 SMA amantzio at dynacom line:2928LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:40:58.068 SMA amantzio at dynacom line:2929LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2930LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2931DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2932LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2933LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2934DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2935LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2936LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2937DETAIL: portal: ""
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2938LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2939LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2940DETAIL: portal: ""
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2941LOG: statement:
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2942LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2943LOG: Sync message from frontend.
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2944LOG: Parse message from frontend.
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2945DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2946LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2947LOG: Bind message from frontend.
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2948DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2949LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2950LOG: Describe message from frontend.
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2951DETAIL: portal: ""
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2952LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2953LOG: Execute message from frontend.
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2954DETAIL: portal: ""
[60674] 2025-05-02 14:40:58.096 SMA amantzio at dynacom line:2955LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:40:58.097 SMA amantzio at dynacom line:2956LOG: fetch from memory cache
[60674] 2025-05-02 14:40:58.097 SMA amantzio at dynacom line:2957DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:40:58.097 SMA amantzio at dynacom line:2958LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2959LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2960DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2961LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2962LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2963DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2964LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2965LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2966DETAIL: portal: ""
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2967LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2968LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2969DETAIL: portal: ""
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2970LOG: statement:
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2971LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2972LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2973LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2974DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2975LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2976LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2977DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2978LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2979LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2980DETAIL: portal: ""
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2981LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2982LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2983DETAIL: portal: ""
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2984LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2985LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:01.785 SMA amantzio at dynacom line:2986LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2987LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2988DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2989LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2990LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2991DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2992LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2993LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2994DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2995LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2996LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2997DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2998LOG: statement:
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:2999LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:02.416 SMA amantzio at dynacom line:3000LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3001LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3002DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3003LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3004LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3005DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3006LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3007LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3008DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3009LOG: statement: BEGIN
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3010LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3011LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3012DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3013LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3014LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3015DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3016LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3017LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3018DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3019LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3020LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3021DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3022LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3023LOG: fetch from memory cache
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3024DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:02.417 SMA amantzio at dynacom line:3025LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3026LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3027DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3028LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3029LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3030DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3031LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3032LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3033DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3034LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3035LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3036DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3037LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3038LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:02.418 SMA amantzio at dynacom line:3039LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3040LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3041DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3042LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3043LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3044DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3045LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3046LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3047DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3048LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3049LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3050DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3051LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3052LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3053LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3054LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3055DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767531,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3056LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767531,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3057LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3058DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3059LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767531,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3060LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3061DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3062LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3063LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3064DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3065LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767531,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3066LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767531,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:02.419 SMA amantzio at dynacom line:3067LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:02.429 SMA amantzio at dynacom line:3068LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:02.429 SMA amantzio at dynacom line:3069DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:02.429 SMA amantzio at dynacom line:3070LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:02.429 SMA amantzio at dynacom line:3071LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:02.429 SMA amantzio at dynacom line:3072DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:02.429 SMA amantzio at dynacom line:3073LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:02.429 SMA amantzio at dynacom line:3074LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:02.429 SMA amantzio at dynacom line:3075DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.429 SMA amantzio at dynacom line:3076LOG: statement: COMMIT
[60674] 2025-05-02 14:41:02.429 SMA amantzio at dynacom line:3077LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:02.429 SMA amantzio at dynacom line:3078LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:02.441 SMA amantzio at dynacom line:3079LOG: error while deleting item from shmem cache, item: 170 was already deleted
[60674] 2025-05-02 14:41:02.441 SMA amantzio at dynacom line:3080LOG: error while deleting item from shmem cache, item: 172 was already deleted
[60674] 2025-05-02 14:41:02.441 SMA amantzio at dynacom line:3081LOG: error while deleting item from shmem cache, item: 174 was already deleted
[60674] 2025-05-02 14:41:02.441 SMA amantzio at dynacom line:3082LOG: error while deleting item from shmem cache, item: 176 was already deleted
[60674] 2025-05-02 14:41:02.441 SMA amantzio at dynacom line:3083LOG: error while deleting item from shmem cache, item: 178 was already deleted
[60674] 2025-05-02 14:41:02.441 SMA amantzio at dynacom line:3084LOG: error while deleting item from shmem cache, item: 180 was already deleted
[60674] 2025-05-02 14:41:02.441 SMA amantzio at dynacom line:3085LOG: error while deleting item from shmem cache, item: 182 was already deleted
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3086LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3087DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3088LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3089LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3090DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3091LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3092LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3093DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3094LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3095LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3096DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3097LOG: statement:
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3098LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:02.639 SMA amantzio at dynacom line:3099LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3100LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3101DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3102LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3103LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3104DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3105LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3106LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3107DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3108LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3109LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3110DETAIL: portal: ""
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3111LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3112LOG: fetch from memory cache
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3113DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:02.640 SMA amantzio at dynacom line:3114LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3115LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3116DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3117LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3118LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3119DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3120LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3121LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3122DETAIL: portal: ""
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3123LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3124LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3125DETAIL: portal: ""
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3126LOG: statement:
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3127LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:04.680 SMA amantzio at dynacom line:3128LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3129LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3130DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3131LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3132LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3133DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3134LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3135LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3136DETAIL: portal: ""
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3137LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3138LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3139DETAIL: portal: ""
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3140LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3141LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:04.681 SMA amantzio at dynacom line:3142LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.315 SMA amantzio at dynacom line:3143LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.315 SMA amantzio at dynacom line:3144DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:05.315 SMA amantzio at dynacom line:3145LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:05.315 SMA amantzio at dynacom line:3146LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.315 SMA amantzio at dynacom line:3147DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.315 SMA amantzio at dynacom line:3148LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3149LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3150DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3151LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3152LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3153DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3154LOG: statement:
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3155LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3156LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3157LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3158DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3159LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3160LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3161DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3162LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3163LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3164DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3165LOG: statement: BEGIN
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3166LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3167LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3168DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3169LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3170LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3171DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3172LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3173LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3174DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3175LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3176LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3177DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3178LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3179LOG: fetch from memory cache
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3180DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:05.316 SMA amantzio at dynacom line:3181LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3182LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3183DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3184LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3185LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3186DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3187LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3188LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3189DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3190LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3191LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3192DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3193LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3194LOG: fetch from memory cache
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3195DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3196LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3197LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3198DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3199LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3200LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3201DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3202LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3203LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3204DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3205LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3206LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3207DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3208LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3209LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:05.317 SMA amantzio at dynacom line:3210LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3211LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3212DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3213LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3214LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3215DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3216LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3217LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3218DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3219LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3220LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3221DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3222LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3223LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3224LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3225LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3226DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:05.318 SMA amantzio at dynacom line:3227LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.319 SMA amantzio at dynacom line:3228LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.319 SMA amantzio at dynacom line:3229DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.319 SMA amantzio at dynacom line:3230LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.319 SMA amantzio at dynacom line:3231LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.319 SMA amantzio at dynacom line:3232DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.319 SMA amantzio at dynacom line:3233LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.319 SMA amantzio at dynacom line:3234LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.319 SMA amantzio at dynacom line:3235DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.319 SMA amantzio at dynacom line:3236LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.319 SMA amantzio at dynacom line:3237LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.319 SMA amantzio at dynacom line:3238LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3239LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3240DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3241LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3242LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3243DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3244LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3245LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3246DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3247LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3248LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3249DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3250LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3251LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.366 SMA amantzio at dynacom line:3252LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3253LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3254DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3255LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3256LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3257DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3258LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3259LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3260DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3261LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3262LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3263DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3264LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3265LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.367 SMA amantzio at dynacom line:3266LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.410 SMA amantzio at dynacom line:3267LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.410 SMA amantzio at dynacom line:3268DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:05.410 SMA amantzio at dynacom line:3269LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.411 SMA amantzio at dynacom line:3270LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.411 SMA amantzio at dynacom line:3271DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.411 SMA amantzio at dynacom line:3272LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.411 SMA amantzio at dynacom line:3273LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.411 SMA amantzio at dynacom line:3274DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.411 SMA amantzio at dynacom line:3275LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.411 SMA amantzio at dynacom line:3276LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.411 SMA amantzio at dynacom line:3277DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.411 SMA amantzio at dynacom line:3278LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.411 SMA amantzio at dynacom line:3279LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.411 SMA amantzio at dynacom line:3280LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3281LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3282DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3283LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3284LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3285DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3286LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3287LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3288DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3289LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3290LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3291DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3292LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3293LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.412 SMA amantzio at dynacom line:3294LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.454 SMA amantzio at dynacom line:3295LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.454 SMA amantzio at dynacom line:3296DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:05.454 SMA amantzio at dynacom line:3297LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.454 SMA amantzio at dynacom line:3298LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.454 SMA amantzio at dynacom line:3299DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.454 SMA amantzio at dynacom line:3300LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.454 SMA amantzio at dynacom line:3301LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.454 SMA amantzio at dynacom line:3302DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.455 SMA amantzio at dynacom line:3303LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.455 SMA amantzio at dynacom line:3304LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.455 SMA amantzio at dynacom line:3305DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.455 SMA amantzio at dynacom line:3306LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.455 SMA amantzio at dynacom line:3307LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.455 SMA amantzio at dynacom line:3308LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3309LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3310DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3311LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3312LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3313DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3314LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3315LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3316DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3317LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3318LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3319DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3320LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3321LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.456 SMA amantzio at dynacom line:3322LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3323LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3324DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3325LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3326LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3327DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3328LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3329LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3330DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3331LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3332LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3333DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3334LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3335LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.503 SMA amantzio at dynacom line:3336LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.504 SMA amantzio at dynacom line:3337LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.504 SMA amantzio at dynacom line:3338DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:05.504 SMA amantzio at dynacom line:3339LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.504 SMA amantzio at dynacom line:3340LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.504 SMA amantzio at dynacom line:3341DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.504 SMA amantzio at dynacom line:3342LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.504 SMA amantzio at dynacom line:3343LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.504 SMA amantzio at dynacom line:3344DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.505 SMA amantzio at dynacom line:3345LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.505 SMA amantzio at dynacom line:3346LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.505 SMA amantzio at dynacom line:3347DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.505 SMA amantzio at dynacom line:3348LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.505 SMA amantzio at dynacom line:3349LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.505 SMA amantzio at dynacom line:3350LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.554 SMA amantzio at dynacom line:3351LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.554 SMA amantzio at dynacom line:3352DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:05.555 SMA amantzio at dynacom line:3353LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.555 SMA amantzio at dynacom line:3354LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.555 SMA amantzio at dynacom line:3355DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.555 SMA amantzio at dynacom line:3356LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.555 SMA amantzio at dynacom line:3357LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.555 SMA amantzio at dynacom line:3358DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.555 SMA amantzio at dynacom line:3359LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.555 SMA amantzio at dynacom line:3360LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.555 SMA amantzio at dynacom line:3361DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.555 SMA amantzio at dynacom line:3362LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.555 SMA amantzio at dynacom line:3363LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.555 SMA amantzio at dynacom line:3364LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3365LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3366DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3367LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3368LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3369DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3370LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3371LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3372DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3373LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3374LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3375DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3376LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3377LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.556 SMA amantzio at dynacom line:3378LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3379LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3380DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3381LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3382LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3383DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3384LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3385LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3386DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3387LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3388LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3389DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3390LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3391LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.602 SMA amantzio at dynacom line:3392LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3393LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3394DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3395LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3396LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3397DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3398LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3399LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3400DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3401LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3402LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3403DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3404LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3405LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.603 SMA amantzio at dynacom line:3406LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3407LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3408DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3409LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3410LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3411DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3412LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3413LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3414DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3415LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3416LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3417DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3418LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3419LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:05.650 SMA amantzio at dynacom line:3420LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3421LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3422DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3423LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3424LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3425DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3426LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3427LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3428DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3429LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3430LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3431DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3432LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3433LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:05.651 SMA amantzio at dynacom line:3434LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.700 SMA amantzio at dynacom line:3435LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.700 SMA amantzio at dynacom line:3436DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:05.700 SMA amantzio at dynacom line:3437LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:05.700 SMA amantzio at dynacom line:3438LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.700 SMA amantzio at dynacom line:3439DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.700 SMA amantzio at dynacom line:3440LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:05.700 SMA amantzio at dynacom line:3441LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.700 SMA amantzio at dynacom line:3442DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.700 SMA amantzio at dynacom line:3443LOG: statement: COMMIT
[60674] 2025-05-02 14:41:05.700 SMA amantzio at dynacom line:3444LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:05.700 SMA amantzio at dynacom line:3445LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3446LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3447DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3448LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3449LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3450DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3451LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3452LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3453DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3454LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3455LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3456DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3457LOG: statement:
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3458LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3459LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3460LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3461DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3462LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3463LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3464DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3465LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3466LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3467DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3468LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3469LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3470DETAIL: portal: ""
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3471LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3472LOG: fetch from memory cache
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3473DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:05.711 SMA amantzio at dynacom line:3474LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3475LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3476DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3477LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3478LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3479DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3480LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3481LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3482DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3483LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3484LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3485DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3486LOG: statement:
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3487LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3488LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3489LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3490DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3491LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3492LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3493DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3494LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3495LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3496DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3497LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3498LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3499DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3500LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3501LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:10.285 SMA amantzio at dynacom line:3502LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3503LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3504DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3505LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3506LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3507DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3508LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3509LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3510DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3511LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3512LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3513DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3514LOG: statement:
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3515LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3516LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3517LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3518DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3519LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3520LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3521DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3522LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3523LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3524DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3525LOG: statement: BEGIN
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3526LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3527LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:10.922 SMA amantzio at dynacom line:3528DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3529LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3530LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3531DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3532LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3533LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3534DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3535LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3536LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3537DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3538LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3539LOG: fetch from memory cache
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3540DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3541LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3542LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3543DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3544LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3545LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3546DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3547LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3548LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3549DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3550LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3551LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3552DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3553LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3554LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:10.923 SMA amantzio at dynacom line:3555LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3556LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3557DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3558LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3559LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3560DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3561LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3562LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3563DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3564LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3565LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3566DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3567LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:10.924 SMA amantzio at dynacom line:3568LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3569LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3570LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3571DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767532,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3572LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767532,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3573LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3574DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3575LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767532,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3576LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3577DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3578LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3579LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3580DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3581LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767532,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3582LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767532,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:10.925 SMA amantzio at dynacom line:3583LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:10.930 SMA amantzio at dynacom line:3584LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:10.930 SMA amantzio at dynacom line:3585DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:10.930 SMA amantzio at dynacom line:3586LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:10.930 SMA amantzio at dynacom line:3587LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:10.930 SMA amantzio at dynacom line:3588DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:10.930 SMA amantzio at dynacom line:3589LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:10.930 SMA amantzio at dynacom line:3590LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:10.930 SMA amantzio at dynacom line:3591DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.930 SMA amantzio at dynacom line:3592LOG: statement: COMMIT
[60674] 2025-05-02 14:41:10.930 SMA amantzio at dynacom line:3593LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:10.930 SMA amantzio at dynacom line:3594LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:10.933 SMA amantzio at dynacom line:3595LOG: error while deleting item from shmem cache, item: 184 was already deleted
[60674] 2025-05-02 14:41:10.933 SMA amantzio at dynacom line:3596LOG: error while deleting item from shmem cache, item: 186 was already deleted
[60674] 2025-05-02 14:41:10.933 SMA amantzio at dynacom line:3597LOG: error while deleting item from shmem cache, item: 188 was already deleted
[60674] 2025-05-02 14:41:10.933 SMA amantzio at dynacom line:3598LOG: error while deleting item from shmem cache, item: 190 was already deleted
[60674] 2025-05-02 14:41:10.933 SMA amantzio at dynacom line:3599LOG: error while deleting item from shmem cache, item: 192 was already deleted
[60674] 2025-05-02 14:41:10.933 SMA amantzio at dynacom line:3600LOG: error while deleting item from shmem cache, item: 194 was already deleted
[60674] 2025-05-02 14:41:10.933 SMA amantzio at dynacom line:3601LOG: error while deleting item from shmem cache, item: 196 was already deleted
[60674] 2025-05-02 14:41:10.933 SMA amantzio at dynacom line:3602LOG: error while deleting item from shmem cache, item: 198 was already deleted
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3603LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3604DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3605LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3606LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3607DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3608LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3609LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3610DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3611LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3612LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3613DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3614LOG: statement:
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3615LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3616LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3617LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3618DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3619LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3620LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3621DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3622LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3623LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3624DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3625LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3626LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3627DETAIL: portal: ""
[60674] 2025-05-02 14:41:10.942 SMA amantzio at dynacom line:3628LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:10.943 SMA amantzio at dynacom line:3629LOG: fetch from memory cache
[60674] 2025-05-02 14:41:10.943 SMA amantzio at dynacom line:3630DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:10.943 SMA amantzio at dynacom line:3631LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3632LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3633DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3634LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3635LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3636DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3637LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3638LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3639DETAIL: portal: ""
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3640LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3641LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3642DETAIL: portal: ""
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3643LOG: statement:
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3644LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3645LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3646LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3647DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:12.490 SMA amantzio at dynacom line:3648LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:12.491 SMA amantzio at dynacom line:3649LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:12.491 SMA amantzio at dynacom line:3650DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:12.491 SMA amantzio at dynacom line:3651LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:12.491 SMA amantzio at dynacom line:3652LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:12.491 SMA amantzio at dynacom line:3653DETAIL: portal: ""
[60674] 2025-05-02 14:41:12.491 SMA amantzio at dynacom line:3654LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:12.491 SMA amantzio at dynacom line:3655LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:12.491 SMA amantzio at dynacom line:3656DETAIL: portal: ""
[60674] 2025-05-02 14:41:12.491 SMA amantzio at dynacom line:3657LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:12.491 SMA amantzio at dynacom line:3658LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:12.491 SMA amantzio at dynacom line:3659LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3660LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3661DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3662LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3663LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3664DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3665LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3666LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3667DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3668LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3669LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3670DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3671LOG: statement:
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3672LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:13.199 SMA amantzio at dynacom line:3673LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3674LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3675DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3676LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3677LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3678DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3679LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3680LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3681DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3682LOG: statement: BEGIN
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3683LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3684LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3685DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3686LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3687LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3688DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3689LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3690LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3691DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3692LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3693LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3694DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3695LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3696LOG: fetch from memory cache
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3697DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3698LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3699LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.200 SMA amantzio at dynacom line:3700DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3701LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3702LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3703DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3704LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3705LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3706DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3707LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3708LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3709DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3710LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3711LOG: fetch from memory cache
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3712DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3713LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3714LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3715DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3716LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3717LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3718DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3719LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3720LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3721DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3722LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3723LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3724DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3725LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3726LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3727LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3728LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.201 SMA amantzio at dynacom line:3729DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3730LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3731LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3732DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3733LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3734LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3735DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3736LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3737LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3738DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3739LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3740LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3741LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3742LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3743DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3744LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3745LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3746DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3747LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3748LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3749DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3750LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3751LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3752DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3753LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3754LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.202 SMA amantzio at dynacom line:3755LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3756LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3757DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3758LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3759LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3760DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3761LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3762LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3763DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3764LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3765LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3766DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3767LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3768LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.251 SMA amantzio at dynacom line:3769LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3770LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3771DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3772LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3773LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3774DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3775LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3776LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3777DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3778LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3779LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3780DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3781LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3782LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.252 SMA amantzio at dynacom line:3783LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3784LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3785DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3786LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3787LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3788DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3789LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3790LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3791DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3792LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3793LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3794DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3795LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3796LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.298 SMA amantzio at dynacom line:3797LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3798LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3799DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3800LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3801LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3802DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3803LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3804LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3805DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3806LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3807LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3808DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3809LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3810LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.299 SMA amantzio at dynacom line:3811LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3812LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3813DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3814LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3815LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3816DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3817LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3818LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3819DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3820LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3821LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3822DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3823LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3824LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.349 SMA amantzio at dynacom line:3825LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3826LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3827DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3828LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3829LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3830DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3831LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3832LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3833DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3834LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3835LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3836DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3837LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3838LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.351 SMA amantzio at dynacom line:3839LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.403 SMA amantzio at dynacom line:3840LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.403 SMA amantzio at dynacom line:3841DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:13.403 SMA amantzio at dynacom line:3842LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.403 SMA amantzio at dynacom line:3843LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.403 SMA amantzio at dynacom line:3844DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.403 SMA amantzio at dynacom line:3845LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.403 SMA amantzio at dynacom line:3846LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.403 SMA amantzio at dynacom line:3847DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.403 SMA amantzio at dynacom line:3848LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.403 SMA amantzio at dynacom line:3849LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.403 SMA amantzio at dynacom line:3850DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.403 SMA amantzio at dynacom line:3851LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.404 SMA amantzio at dynacom line:3852LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.404 SMA amantzio at dynacom line:3853LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3854LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3855DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3856LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3857LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3858DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3859LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3860LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3861DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3862LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3863LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3864DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3865LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3866LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.405 SMA amantzio at dynacom line:3867LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.454 SMA amantzio at dynacom line:3868LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.454 SMA amantzio at dynacom line:3869DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:13.455 SMA amantzio at dynacom line:3870LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.455 SMA amantzio at dynacom line:3871LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.455 SMA amantzio at dynacom line:3872DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.455 SMA amantzio at dynacom line:3873LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.455 SMA amantzio at dynacom line:3874LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.455 SMA amantzio at dynacom line:3875DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.455 SMA amantzio at dynacom line:3876LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.455 SMA amantzio at dynacom line:3877LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.455 SMA amantzio at dynacom line:3878DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.455 SMA amantzio at dynacom line:3879LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.455 SMA amantzio at dynacom line:3880LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.455 SMA amantzio at dynacom line:3881LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3882LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3883DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3884LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3885LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3886DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3887LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3888LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3889DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3890LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3891LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3892DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3893LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3894LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.456 SMA amantzio at dynacom line:3895LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.504 SMA amantzio at dynacom line:3896LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.504 SMA amantzio at dynacom line:3897DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:13.505 SMA amantzio at dynacom line:3898LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.505 SMA amantzio at dynacom line:3899LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.505 SMA amantzio at dynacom line:3900DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.505 SMA amantzio at dynacom line:3901LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.505 SMA amantzio at dynacom line:3902LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.505 SMA amantzio at dynacom line:3903DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.505 SMA amantzio at dynacom line:3904LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.505 SMA amantzio at dynacom line:3905LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.505 SMA amantzio at dynacom line:3906DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.505 SMA amantzio at dynacom line:3907LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.505 SMA amantzio at dynacom line:3908LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.505 SMA amantzio at dynacom line:3909LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3910LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3911DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3912LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3913LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3914DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3915LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3916LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3917DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3918LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3919LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3920DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3921LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3922LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.506 SMA amantzio at dynacom line:3923LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3924LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3925DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3926LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3927LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3928DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3929LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3930LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3931DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3932LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3933LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3934DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3935LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3936LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.552 SMA amantzio at dynacom line:3937LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3938LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3939DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3940LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3941LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3942DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3943LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3944LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3945DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3946LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3947LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3948DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3949LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3950LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.553 SMA amantzio at dynacom line:3951LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3952LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3953DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3954LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3955LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3956DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3957LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3958LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3959DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3960LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3961LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3962DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3963LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3964LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:13.596 SMA amantzio at dynacom line:3965LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.597 SMA amantzio at dynacom line:3966LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.597 SMA amantzio at dynacom line:3967DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:13.598 SMA amantzio at dynacom line:3968LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.598 SMA amantzio at dynacom line:3969LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.598 SMA amantzio at dynacom line:3970DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.598 SMA amantzio at dynacom line:3971LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.598 SMA amantzio at dynacom line:3972LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.598 SMA amantzio at dynacom line:3973DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.598 SMA amantzio at dynacom line:3974LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.598 SMA amantzio at dynacom line:3975LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.598 SMA amantzio at dynacom line:3976DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.598 SMA amantzio at dynacom line:3977LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.598 SMA amantzio at dynacom line:3978LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:13.598 SMA amantzio at dynacom line:3979LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.641 SMA amantzio at dynacom line:3980LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.641 SMA amantzio at dynacom line:3981DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:13.641 SMA amantzio at dynacom line:3982LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:13.641 SMA amantzio at dynacom line:3983LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.641 SMA amantzio at dynacom line:3984DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.641 SMA amantzio at dynacom line:3985LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:13.641 SMA amantzio at dynacom line:3986LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.641 SMA amantzio at dynacom line:3987DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.641 SMA amantzio at dynacom line:3988LOG: statement: COMMIT
[60674] 2025-05-02 14:41:13.641 SMA amantzio at dynacom line:3989LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:13.641 SMA amantzio at dynacom line:3990LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:3991LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:3992DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:3993LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:3994LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:3995DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:3996LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:3997LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:3998DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:3999LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4000LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4001DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4002LOG: statement:
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4003LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4004LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4005LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4006DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4007LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4008LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4009DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4010LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4011LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4012DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4013LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4014LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4015DETAIL: portal: ""
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4016LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4017LOG: fetch from memory cache
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4018DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:13.653 SMA amantzio at dynacom line:4019LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4020LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4021DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4022LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4023LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4024DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4025LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4026LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4027DETAIL: portal: ""
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4028LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4029LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4030DETAIL: portal: ""
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4031LOG: statement:
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4032LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4033LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4034LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4035DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4036LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4037LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4038DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4039LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4040LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4041DETAIL: portal: ""
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4042LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4043LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4044DETAIL: portal: ""
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4045LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4046LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:17.362 SMA amantzio at dynacom line:4047LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4048LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4049DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4050LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4051LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4052DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4053LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4054LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4055DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4056LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4057LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4058DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4059LOG: statement:
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4060LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:18.080 SMA amantzio at dynacom line:4061LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4062LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4063DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4064LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4065LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4066DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4067LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4068LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4069DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4070LOG: statement: BEGIN
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4071LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4072LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4073DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4074LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4075LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4076DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4077LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4078LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4079DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4080LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4081LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4082DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4083LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4084LOG: fetch from memory cache
[60674] 2025-05-02 14:41:18.081 SMA amantzio at dynacom line:4085DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4086LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4087LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4088DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4089LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4090LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4091DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4092LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4093LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4094DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4095LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4096LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4097DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4098LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4099LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4100LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4101LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:18.082 SMA amantzio at dynacom line:4102DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4103LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4104LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4105DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4106LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4107LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4108DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4109LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4110LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4111DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4112LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4113LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4114LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4115LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4116DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767533,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4117LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767533,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4118LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4119DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4120LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767533,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4121LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4122DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4123LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4124LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4125DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4126LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767533,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4127LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767533,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:18.083 SMA amantzio at dynacom line:4128LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:18.086 SMA amantzio at dynacom line:4129LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:18.086 SMA amantzio at dynacom line:4130DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:18.086 SMA amantzio at dynacom line:4131LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:18.086 SMA amantzio at dynacom line:4132LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:18.086 SMA amantzio at dynacom line:4133DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:18.086 SMA amantzio at dynacom line:4134LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:18.086 SMA amantzio at dynacom line:4135LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:18.086 SMA amantzio at dynacom line:4136DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.086 SMA amantzio at dynacom line:4137LOG: statement: COMMIT
[60674] 2025-05-02 14:41:18.086 SMA amantzio at dynacom line:4138LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:18.086 SMA amantzio at dynacom line:4139LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:18.088 SMA amantzio at dynacom line:4140LOG: error while deleting item from shmem cache, item: 200 was already deleted
[60674] 2025-05-02 14:41:18.088 SMA amantzio at dynacom line:4141LOG: error while deleting item from shmem cache, item: 202 was already deleted
[60674] 2025-05-02 14:41:18.088 SMA amantzio at dynacom line:4142LOG: error while deleting item from shmem cache, item: 204 was already deleted
[60674] 2025-05-02 14:41:18.088 SMA amantzio at dynacom line:4143LOG: error while deleting item from shmem cache, item: 206 was already deleted
[60674] 2025-05-02 14:41:18.088 SMA amantzio at dynacom line:4144LOG: error while deleting item from shmem cache, item: 208 was already deleted
[60674] 2025-05-02 14:41:18.088 SMA amantzio at dynacom line:4145LOG: error while deleting item from shmem cache, item: 210 was already deleted
[60674] 2025-05-02 14:41:18.088 SMA amantzio at dynacom line:4146LOG: error while deleting item from shmem cache, item: 212 was already deleted
[60674] 2025-05-02 14:41:18.088 SMA amantzio at dynacom line:4147LOG: error while deleting item from shmem cache, item: 214 was already deleted
[60674] 2025-05-02 14:41:18.088 SMA amantzio at dynacom line:4148LOG: error while deleting item from shmem cache, item: 216 was already deleted
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4149LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4150DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4151LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4152LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4153DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4154LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4155LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4156DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4157LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4158LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4159DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4160LOG: statement:
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4161LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4162LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4163LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4164DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4165LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4166LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4167DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4168LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4169LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4170DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4171LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4172LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4173DETAIL: portal: ""
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4174LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4175LOG: fetch from memory cache
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4176DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:18.186 SMA amantzio at dynacom line:4177LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4178LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4179DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4180LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4181LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4182DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4183LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4184LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4185DETAIL: portal: ""
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4186LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4187LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4188DETAIL: portal: ""
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4189LOG: statement:
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4190LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4191LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4192LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:19.826 SMA amantzio at dynacom line:4193DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:19.827 SMA amantzio at dynacom line:4194LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:19.827 SMA amantzio at dynacom line:4195LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:19.827 SMA amantzio at dynacom line:4196DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:19.827 SMA amantzio at dynacom line:4197LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:19.827 SMA amantzio at dynacom line:4198LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:19.827 SMA amantzio at dynacom line:4199DETAIL: portal: ""
[60674] 2025-05-02 14:41:19.827 SMA amantzio at dynacom line:4200LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:19.827 SMA amantzio at dynacom line:4201LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:19.827 SMA amantzio at dynacom line:4202DETAIL: portal: ""
[60674] 2025-05-02 14:41:19.827 SMA amantzio at dynacom line:4203LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:19.827 SMA amantzio at dynacom line:4204LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:19.827 SMA amantzio at dynacom line:4205LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4206LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4207DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4208LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4209LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4210DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4211LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4212LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4213DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4214LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4215LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4216DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4217LOG: statement:
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4218LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:20.464 SMA amantzio at dynacom line:4219LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4220LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4221DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4222LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4223LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4224DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4225LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4226LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4227DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4228LOG: statement: BEGIN
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4229LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4230LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4231DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4232LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4233LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4234DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4235LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4236LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4237DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4238LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4239LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4240DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4241LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4242LOG: fetch from memory cache
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4243DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4244LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4245LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.465 SMA amantzio at dynacom line:4246DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4247LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4248LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4249DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4250LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4251LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4252DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4253LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4254LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4255DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4256LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4257LOG: fetch from memory cache
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4258DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4259LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4260LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4261DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4262LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4263LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4264DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4265LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4266LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4267DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4268LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4269LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4270DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4271LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4272LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:20.466 SMA amantzio at dynacom line:4273LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4274LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4275DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4276LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4277LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4278DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4279LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4280LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4281DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4282LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4283LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4284DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4285LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4286LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4287LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4288LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4289DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4290LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4291LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4292DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4293LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4294LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4295DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4296LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4297LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.467 SMA amantzio at dynacom line:4298DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.468 SMA amantzio at dynacom line:4299LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.468 SMA amantzio at dynacom line:4300LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.468 SMA amantzio at dynacom line:4301LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4302LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4303DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4304LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4305LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4306DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4307LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4308LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4309DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4310LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4311LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4312DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4313LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4314LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.524 SMA amantzio at dynacom line:4315LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4316LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4317DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4318LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4319LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4320DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4321LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4322LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4323DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4324LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4325LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4326DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4327LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4328LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.525 SMA amantzio at dynacom line:4329LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.571 SMA amantzio at dynacom line:4330LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.571 SMA amantzio at dynacom line:4331DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:20.572 SMA amantzio at dynacom line:4332LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.572 SMA amantzio at dynacom line:4333LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.572 SMA amantzio at dynacom line:4334DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.572 SMA amantzio at dynacom line:4335LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.572 SMA amantzio at dynacom line:4336LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.572 SMA amantzio at dynacom line:4337DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.572 SMA amantzio at dynacom line:4338LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.572 SMA amantzio at dynacom line:4339LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.572 SMA amantzio at dynacom line:4340DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.572 SMA amantzio at dynacom line:4341LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.572 SMA amantzio at dynacom line:4342LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.572 SMA amantzio at dynacom line:4343LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4344LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4345DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4346LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4347LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4348DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4349LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4350LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4351DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4352LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4353LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4354DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4355LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4356LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.573 SMA amantzio at dynacom line:4357LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4358LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4359DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4360LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4361LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4362DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4363LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4364LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4365DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4366LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4367LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4368DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4369LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4370LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.618 SMA amantzio at dynacom line:4371LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4372LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4373DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4374LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4375LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4376DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4377LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4378LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4379DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4380LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4381LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4382DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4383LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4384LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.619 SMA amantzio at dynacom line:4385LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4386LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4387DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4388LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4389LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4390DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4391LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4392LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4393DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4394LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4395LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4396DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4397LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4398LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.667 SMA amantzio at dynacom line:4399LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4400LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4401DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4402LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4403LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4404DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4405LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4406LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4407DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4408LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4409LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4410DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4411LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4412LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.669 SMA amantzio at dynacom line:4413LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4414LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4415DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4416LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4417LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4418DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4419LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4420LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4421DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4422LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4423LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4424DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4425LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4426LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.714 SMA amantzio at dynacom line:4427LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4428LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4429DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4430LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4431LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4432DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4433LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4434LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4435DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4436LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4437LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4438DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4439LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4440LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.715 SMA amantzio at dynacom line:4441LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.761 SMA amantzio at dynacom line:4442LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.761 SMA amantzio at dynacom line:4443DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:20.762 SMA amantzio at dynacom line:4444LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.762 SMA amantzio at dynacom line:4445LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.762 SMA amantzio at dynacom line:4446DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.762 SMA amantzio at dynacom line:4447LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.762 SMA amantzio at dynacom line:4448LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.762 SMA amantzio at dynacom line:4449DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.762 SMA amantzio at dynacom line:4450LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.762 SMA amantzio at dynacom line:4451LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.762 SMA amantzio at dynacom line:4452DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.762 SMA amantzio at dynacom line:4453LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.762 SMA amantzio at dynacom line:4454LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.762 SMA amantzio at dynacom line:4455LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4456LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4457DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4458LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4459LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4460DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4461LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4462LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4463DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4464LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4465LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4466DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4467LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4468LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.763 SMA amantzio at dynacom line:4469LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4470LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4471DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4472LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4473LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4474DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4475LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4476LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4477DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4478LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4479LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4480DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4481LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4482LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.810 SMA amantzio at dynacom line:4483LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4484LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4485DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4486LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4487LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4488DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4489LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4490LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4491DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4492LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4493LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4494DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4495LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4496LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.811 SMA amantzio at dynacom line:4497LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4498LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4499DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4500LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4501LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4502DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4503LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4504LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4505DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4506LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4507LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4508DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4509LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4510LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.859 SMA amantzio at dynacom line:4511LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4512LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4513DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4514LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4515LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4516DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4517LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4518LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4519DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4520LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4521LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4522DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4523LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4524LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.860 SMA amantzio at dynacom line:4525LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4526LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4527DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4528LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4529LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4530DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4531LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4532LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4533DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4534LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4535LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4536DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4537LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4538LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:20.908 SMA amantzio at dynacom line:4539LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4540LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4541DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4542LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4543LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4544DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4545LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4546LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4547DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4548LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4549LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4550DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4551LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4552LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:20.909 SMA amantzio at dynacom line:4553LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.959 SMA amantzio at dynacom line:4554LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.959 SMA amantzio at dynacom line:4555DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:20.959 SMA amantzio at dynacom line:4556LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:20.959 SMA amantzio at dynacom line:4557LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.959 SMA amantzio at dynacom line:4558DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.959 SMA amantzio at dynacom line:4559LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:20.959 SMA amantzio at dynacom line:4560LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.959 SMA amantzio at dynacom line:4561DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.959 SMA amantzio at dynacom line:4562LOG: statement: COMMIT
[60674] 2025-05-02 14:41:20.959 SMA amantzio at dynacom line:4563LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:20.959 SMA amantzio at dynacom line:4564LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4565LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4566DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4567LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4568LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4569DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4570LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4571LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4572DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4573LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4574LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4575DETAIL: portal: ""
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4576LOG: statement:
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4577LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4578LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4579LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:20.999 SMA amantzio at dynacom line:4580DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4581LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4582LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4583DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4584LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4585LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4586DETAIL: portal: ""
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4587LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4588LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4589DETAIL: portal: ""
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4590LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4591LOG: fetch from memory cache
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4592DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:21.000 SMA amantzio at dynacom line:4593LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4594LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4595DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4596LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4597LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4598DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4599LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4600LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4601DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4602LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4603LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4604DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4605LOG: statement:
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4606LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4607LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4608LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4609DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4610LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4611LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4612DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4613LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4614LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4615DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4616LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4617LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4618DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4619LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4620LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:28.058 SMA amantzio at dynacom line:4621LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4622LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4623DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4624LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4625LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4626DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4627LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4628LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4629DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4630LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4631LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4632DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4633LOG: statement:
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4634LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4635LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4636LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:28.776 SMA amantzio at dynacom line:4637DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4638LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4639LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4640DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4641LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4642LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4643DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4644LOG: statement: BEGIN
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4645LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4646LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4647DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4648LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4649LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4650DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4651LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4652LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4653DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4654LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4655LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4656DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4657LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4658LOG: fetch from memory cache
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4659DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4660LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4661LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4662DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4663LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4664LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4665DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4666LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4667LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4668DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4669LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4670LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4671DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4672LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4673LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:28.777 SMA amantzio at dynacom line:4674LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4675LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4676DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4677LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4678LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4679DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4680LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4681LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4682DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4683LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4684LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4685DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4686LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4687LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4688LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4689LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4690DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767534,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4691LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767534,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4692LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4693DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4694LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767534,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4695LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4696DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4697LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4698LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4699DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4700LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767534,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4701LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767534,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:28.778 SMA amantzio at dynacom line:4702LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:28.784 SMA amantzio at dynacom line:4703LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:28.784 SMA amantzio at dynacom line:4704DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:28.784 SMA amantzio at dynacom line:4705LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:28.784 SMA amantzio at dynacom line:4706LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:28.784 SMA amantzio at dynacom line:4707DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:28.784 SMA amantzio at dynacom line:4708LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:28.784 SMA amantzio at dynacom line:4709LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:28.784 SMA amantzio at dynacom line:4710DETAIL: portal: ""
[60674] 2025-05-02 14:41:28.784 SMA amantzio at dynacom line:4711LOG: statement: COMMIT
[60674] 2025-05-02 14:41:28.784 SMA amantzio at dynacom line:4712LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:28.784 SMA amantzio at dynacom line:4713LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:28.787 SMA amantzio at dynacom line:4714LOG: error while deleting item from shmem cache, item: 218 was already deleted
[60674] 2025-05-02 14:41:28.787 SMA amantzio at dynacom line:4715LOG: error while deleting item from shmem cache, item: 220 was already deleted
[60674] 2025-05-02 14:41:28.787 SMA amantzio at dynacom line:4716LOG: error while deleting item from shmem cache, item: 222 was already deleted
[60674] 2025-05-02 14:41:28.787 SMA amantzio at dynacom line:4717LOG: error while deleting item from shmem cache, item: 224 was already deleted
[60674] 2025-05-02 14:41:28.787 SMA amantzio at dynacom line:4718LOG: error while deleting item from shmem cache, item: 226 was already deleted
[60674] 2025-05-02 14:41:28.787 SMA amantzio at dynacom line:4719LOG: error while deleting item from shmem cache, item: 228 was already deleted
[60674] 2025-05-02 14:41:28.787 SMA amantzio at dynacom line:4720LOG: error while deleting item from shmem cache, item: 230 was already deleted
[60674] 2025-05-02 14:41:28.787 SMA amantzio at dynacom line:4721LOG: error while deleting item from shmem cache, item: 232 was already deleted
[60674] 2025-05-02 14:41:28.787 SMA amantzio at dynacom line:4722LOG: error while deleting item from shmem cache, item: 234 was already deleted
[60674] 2025-05-02 14:41:28.787 SMA amantzio at dynacom line:4723LOG: error while deleting item from shmem cache, item: 236 was already deleted
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4724LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4725DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4726LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4727LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4728DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4729LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4730LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4731DETAIL: portal: ""
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4732LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4733LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4734DETAIL: portal: ""
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4735LOG: statement:
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4736LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:29.023 SMA amantzio at dynacom line:4737LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4738LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4739DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4740LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4741LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4742DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4743LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4744LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4745DETAIL: portal: ""
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4746LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4747LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4748DETAIL: portal: ""
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4749LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4750LOG: fetch from memory cache
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4751DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:29.024 SMA amantzio at dynacom line:4752LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.114 SMA amantzio at dynacom line:4753LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.114 SMA amantzio at dynacom line:4754DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:30.114 SMA amantzio at dynacom line:4755LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:30.114 SMA amantzio at dynacom line:4756LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.114 SMA amantzio at dynacom line:4757DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.114 SMA amantzio at dynacom line:4758LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:30.114 SMA amantzio at dynacom line:4759LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.114 SMA amantzio at dynacom line:4760DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.114 SMA amantzio at dynacom line:4761LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.114 SMA amantzio at dynacom line:4762LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.114 SMA amantzio at dynacom line:4763DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.114 SMA amantzio at dynacom line:4764LOG: statement:
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4765LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4766LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4767LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4768DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4769LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4770LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4771DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4772LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4773LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4774DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4775LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4776LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4777DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4778LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4779LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:30.115 SMA amantzio at dynacom line:4780LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4781LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4782DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4783LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4784LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4785DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4786LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4787LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4788DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4789LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4790LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4791DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4792LOG: statement:
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4793LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4794LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4795LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4796DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4797LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4798LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4799DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4800LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4801LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.809 SMA amantzio at dynacom line:4802DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4803LOG: statement: BEGIN
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4804LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4805LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4806DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4807LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4808LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4809DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4810LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4811LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4812DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4813LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4814LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4815DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4816LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4817LOG: fetch from memory cache
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4818DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4819LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4820LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.810 SMA amantzio at dynacom line:4821DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4822LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4823LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4824DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4825LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4826LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4827DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4828LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4829LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4830DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4831LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4832LOG: fetch from memory cache
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4833DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4834LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4835LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4836DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4837LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4838LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4839DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4840LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4841LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4842DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4843LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4844LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4845DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4846LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4847LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:30.811 SMA amantzio at dynacom line:4848LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4849LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4850DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4851LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4852LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4853DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4854LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4855LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4856DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4857LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4858LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4859DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4860LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4861LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.812 SMA amantzio at dynacom line:4862LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4863LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4864DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4865LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4866LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4867DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4868LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4869LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4870DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4871LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4872LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4873DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4874LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4875LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.813 SMA amantzio at dynacom line:4876LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4877LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4878DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4879LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4880LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4881DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4882LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4883LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4884DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4885LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4886LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4887DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4888LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4889LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.869 SMA amantzio at dynacom line:4890LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4891LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4892DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4893LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4894LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4895DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4896LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4897LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4898DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4899LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4900LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4901DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4902LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4903LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.870 SMA amantzio at dynacom line:4904LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.917 SMA amantzio at dynacom line:4905LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.917 SMA amantzio at dynacom line:4906DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:30.918 SMA amantzio at dynacom line:4907LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.918 SMA amantzio at dynacom line:4908LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.918 SMA amantzio at dynacom line:4909DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.918 SMA amantzio at dynacom line:4910LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.918 SMA amantzio at dynacom line:4911LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.918 SMA amantzio at dynacom line:4912DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.918 SMA amantzio at dynacom line:4913LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.918 SMA amantzio at dynacom line:4914LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.918 SMA amantzio at dynacom line:4915DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.918 SMA amantzio at dynacom line:4916LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.918 SMA amantzio at dynacom line:4917LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.918 SMA amantzio at dynacom line:4918LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4919LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4920DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4921LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4922LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4923DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4924LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4925LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4926DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4927LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4928LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4929DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4930LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4931LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.919 SMA amantzio at dynacom line:4932LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4933LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4934DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4935LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4936LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4937DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4938LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4939LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4940DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4941LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4942LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4943DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4944LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4945LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:30.966 SMA amantzio at dynacom line:4946LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4947LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4948DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4949LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4950LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4951DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4952LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4953LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4954DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4955LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4956LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4957DETAIL: portal: ""
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4958LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4959LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:30.967 SMA amantzio at dynacom line:4960LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4961LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4962DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4963LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4964LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4965DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4966LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4967LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4968DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4969LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4970LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4971DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4972LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4973LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.014 SMA amantzio at dynacom line:4974LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4975LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4976DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4977LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4978LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4979DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4980LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4981LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4982DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4983LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4984LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4985DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4986LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4987LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.015 SMA amantzio at dynacom line:4988LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:4989LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:4990DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:4991LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:4992LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:4993DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:4994LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:4995LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:4996DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:4997LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:4998LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:4999DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:5000LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:5001LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.066 SMA amantzio at dynacom line:5002LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5003LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5004DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5005LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5006LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5007DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5008LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5009LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5010DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5011LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5012LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5013DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5014LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5015LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.067 SMA amantzio at dynacom line:5016LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5017LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5018DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5019LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5020LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5021DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5022LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5023LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5024DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5025LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5026LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5027DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5028LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5029LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.114 SMA amantzio at dynacom line:5030LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5031LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5032DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5033LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5034LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5035DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5036LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5037LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5038DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5039LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5040LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5041DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5042LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5043LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.115 SMA amantzio at dynacom line:5044LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5045LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5046DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5047LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5048LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5049DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5050LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5051LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5052DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5053LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5054LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5055DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5056LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5057LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.162 SMA amantzio at dynacom line:5058LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5059LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5060DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5061LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5062LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5063DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5064LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5065LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5066DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5067LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5068LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5069DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5070LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5071LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.163 SMA amantzio at dynacom line:5072LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.211 SMA amantzio at dynacom line:5073LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.211 SMA amantzio at dynacom line:5074DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:31.212 SMA amantzio at dynacom line:5075LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.212 SMA amantzio at dynacom line:5076LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.212 SMA amantzio at dynacom line:5077DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.212 SMA amantzio at dynacom line:5078LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.212 SMA amantzio at dynacom line:5079LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.212 SMA amantzio at dynacom line:5080DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.212 SMA amantzio at dynacom line:5081LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.212 SMA amantzio at dynacom line:5082LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.212 SMA amantzio at dynacom line:5083DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.212 SMA amantzio at dynacom line:5084LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.212 SMA amantzio at dynacom line:5085LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.212 SMA amantzio at dynacom line:5086LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5087LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5088DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5089LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5090LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5091DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5092LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5093LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5094DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5095LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5096LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5097DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5098LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5099LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.213 SMA amantzio at dynacom line:5100LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5101LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5102DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5103LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5104LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5105DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5106LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5107LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5108DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5109LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5110LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5111DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5112LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5113LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.265 SMA amantzio at dynacom line:5114LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.266 SMA amantzio at dynacom line:5115LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.266 SMA amantzio at dynacom line:5116DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:31.266 SMA amantzio at dynacom line:5117LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.266 SMA amantzio at dynacom line:5118LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.266 SMA amantzio at dynacom line:5119DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.266 SMA amantzio at dynacom line:5120LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.266 SMA amantzio at dynacom line:5121LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.266 SMA amantzio at dynacom line:5122DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.266 SMA amantzio at dynacom line:5123LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.266 SMA amantzio at dynacom line:5124LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.266 SMA amantzio at dynacom line:5125DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.267 SMA amantzio at dynacom line:5126LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.267 SMA amantzio at dynacom line:5127LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.267 SMA amantzio at dynacom line:5128LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5129LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5130DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5131LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5132LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5133DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5134LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5135LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5136DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5137LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5138LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5139DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5140LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5141LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:31.317 SMA amantzio at dynacom line:5142LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5143LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5144DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5145LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5146LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5147DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5148LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5149LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5150DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5151LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5152LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5153DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5154LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5155LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:31.318 SMA amantzio at dynacom line:5156LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.371 SMA amantzio at dynacom line:5157LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.371 SMA amantzio at dynacom line:5158DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:31.371 SMA amantzio at dynacom line:5159LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:31.371 SMA amantzio at dynacom line:5160LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.371 SMA amantzio at dynacom line:5161DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.371 SMA amantzio at dynacom line:5162LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:31.371 SMA amantzio at dynacom line:5163LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.371 SMA amantzio at dynacom line:5164DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.371 SMA amantzio at dynacom line:5165LOG: statement: COMMIT
[60674] 2025-05-02 14:41:31.371 SMA amantzio at dynacom line:5166LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:31.371 SMA amantzio at dynacom line:5167LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5168LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5169DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5170LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5171LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5172DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5173LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5174LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5175DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5176LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5177LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5178DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5179LOG: statement:
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5180LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5181LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5182LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5183DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5184LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5185LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5186DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5187LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5188LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5189DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5190LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5191LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:31.382 SMA amantzio at dynacom line:5192DETAIL: portal: ""
[60674] 2025-05-02 14:41:31.383 SMA amantzio at dynacom line:5193LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:31.383 SMA amantzio at dynacom line:5194LOG: fetch from memory cache
[60674] 2025-05-02 14:41:31.383 SMA amantzio at dynacom line:5195DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:31.383 SMA amantzio at dynacom line:5196LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5197LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5198DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5199LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5200LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5201DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5202LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5203LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5204DETAIL: portal: ""
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5205LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5206LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5207DETAIL: portal: ""
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5208LOG: statement:
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5209LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5210LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5211LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5212DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5213LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5214LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5215DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5216LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5217LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5218DETAIL: portal: ""
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5219LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5220LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5221DETAIL: portal: ""
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5222LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5223LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:34.755 SMA amantzio at dynacom line:5224LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5225LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5226DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5227LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5228LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5229DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5230LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5231LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5232DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5233LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5234LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5235DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5236LOG: statement:
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5237LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:35.476 SMA amantzio at dynacom line:5238LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5239LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5240DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5241LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5242LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5243DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5244LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5245LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5246DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5247LOG: statement: BEGIN
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5248LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5249LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5250DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5251LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5252LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5253DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5254LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5255LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5256DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5257LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5258LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5259DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5260LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5261LOG: fetch from memory cache
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5262DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5263LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5264LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5265DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5266LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5267LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:35.477 SMA amantzio at dynacom line:5268DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5269LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5270LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5271DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5272LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5273LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5274DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5275LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5276LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5277LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5278LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5279DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5280LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5281LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5282DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5283LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5284LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5285DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5286LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5287LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5288DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5289LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5290LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:35.478 SMA amantzio at dynacom line:5291LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5292LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5293DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767535,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5294LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767535,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5295LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5296DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5297LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767535,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5298LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5299DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5300LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5301LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5302DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5303LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767535,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5304LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767535,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:35.479 SMA amantzio at dynacom line:5305LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:35.482 SMA amantzio at dynacom line:5306LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:35.482 SMA amantzio at dynacom line:5307DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:35.482 SMA amantzio at dynacom line:5308LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:35.482 SMA amantzio at dynacom line:5309LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:35.482 SMA amantzio at dynacom line:5310DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:35.482 SMA amantzio at dynacom line:5311LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:35.482 SMA amantzio at dynacom line:5312LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:35.482 SMA amantzio at dynacom line:5313DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.482 SMA amantzio at dynacom line:5314LOG: statement: COMMIT
[60674] 2025-05-02 14:41:35.482 SMA amantzio at dynacom line:5315LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:35.482 SMA amantzio at dynacom line:5316LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:35.487 SMA amantzio at dynacom line:5317LOG: error while deleting item from shmem cache, item: 238 was already deleted
[60674] 2025-05-02 14:41:35.487 SMA amantzio at dynacom line:5318LOG: error while deleting item from shmem cache, item: 240 was already deleted
[60674] 2025-05-02 14:41:35.487 SMA amantzio at dynacom line:5319LOG: error while deleting item from shmem cache, item: 242 was already deleted
[60674] 2025-05-02 14:41:35.487 SMA amantzio at dynacom line:5320LOG: error while deleting item from shmem cache, item: 244 was already deleted
[60674] 2025-05-02 14:41:35.487 SMA amantzio at dynacom line:5321LOG: error while deleting item from shmem cache, item: 246 was already deleted
[60674] 2025-05-02 14:41:35.487 SMA amantzio at dynacom line:5322LOG: error while deleting item from shmem cache, item: 248 was already deleted
[60674] 2025-05-02 14:41:35.487 SMA amantzio at dynacom line:5323LOG: error while deleting item from shmem cache, item: 250 was already deleted
[60674] 2025-05-02 14:41:35.487 SMA amantzio at dynacom line:5324LOG: error while deleting item from shmem cache, item: 252 was already deleted
[60674] 2025-05-02 14:41:35.487 SMA amantzio at dynacom line:5325LOG: error while deleting item from shmem cache, item: 254 was already deleted
[60674] 2025-05-02 14:41:35.487 SMA amantzio at dynacom line:5326LOG: error while deleting item from shmem cache, item: 256 was already deleted
[60674] 2025-05-02 14:41:35.487 SMA amantzio at dynacom line:5327LOG: error while deleting item from shmem cache, item: 258 was already deleted
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5328LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5329DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5330LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5331LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5332DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5333LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5334LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5335DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5336LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5337LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5338DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5339LOG: statement:
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5340LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:35.658 SMA amantzio at dynacom line:5341LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5342LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5343DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5344LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5345LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5346DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5347LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5348LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5349DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5350LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5351LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5352DETAIL: portal: ""
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5353LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5354LOG: fetch from memory cache
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5355DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:35.659 SMA amantzio at dynacom line:5356LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5357LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5358DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5359LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5360LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5361DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5362LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5363LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5364DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5365LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5366LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5367DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5368LOG: statement:
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5369LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5370LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5371LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5372DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5373LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5374LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5375DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5376LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5377LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5378DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5379LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5380LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5381DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5382LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5383LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:38.083 SMA amantzio at dynacom line:5384LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5385LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5386DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5387LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5388LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5389DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5390LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5391LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5392DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5393LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5394LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5395DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5396LOG: statement:
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5397LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5398LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5399LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5400DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5401LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5402LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5403DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5404LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5405LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5406DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5407LOG: statement: BEGIN
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5408LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5409LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.792 SMA amantzio at dynacom line:5410DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:38.793 SMA amantzio at dynacom line:5411LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:38.793 SMA amantzio at dynacom line:5412LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.793 SMA amantzio at dynacom line:5413DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.793 SMA amantzio at dynacom line:5414LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:38.793 SMA amantzio at dynacom line:5415LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.793 SMA amantzio at dynacom line:5416DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.793 SMA amantzio at dynacom line:5417LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.793 SMA amantzio at dynacom line:5418LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.793 SMA amantzio at dynacom line:5419DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.793 SMA amantzio at dynacom line:5420LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:38.797 SMA amantzio at dynacom line:5421LOG: fetch from memory cache
[60674] 2025-05-02 14:41:38.797 SMA amantzio at dynacom line:5422DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:38.797 SMA amantzio at dynacom line:5423LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.803 SMA amantzio at dynacom line:5424LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.803 SMA amantzio at dynacom line:5425DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:41:38.803 SMA amantzio at dynacom line:5426LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:38.803 SMA amantzio at dynacom line:5427LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.803 SMA amantzio at dynacom line:5428DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.803 SMA amantzio at dynacom line:5429LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:38.803 SMA amantzio at dynacom line:5430LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.803 SMA amantzio at dynacom line:5431DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.803 SMA amantzio at dynacom line:5432LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.803 SMA amantzio at dynacom line:5433LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.803 SMA amantzio at dynacom line:5434DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.803 SMA amantzio at dynacom line:5435LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5436LOG: fetch from memory cache
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5437DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5438LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5439LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5440DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5441LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5442LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5443DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5444LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5445LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5446DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5447LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5448LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5449DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5450LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5451LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:38.804 SMA amantzio at dynacom line:5452LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5453LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5454DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5455LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5456LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5457DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5458LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5459LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5460DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5461LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5462LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5463DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5464LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5465LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.805 SMA amantzio at dynacom line:5466LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5467LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5468DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5469LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5470LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5471DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5472LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5473LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5474DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5475LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5476LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5477DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5478LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5479LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.806 SMA amantzio at dynacom line:5480LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5481LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5482DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5483LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5484LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5485DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5486LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5487LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5488DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5489LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5490LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5491DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5492LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5493LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.857 SMA amantzio at dynacom line:5494LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5495LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5496DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5497LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5498LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5499DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5500LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5501LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5502DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5503LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5504LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5505DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5506LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5507LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.858 SMA amantzio at dynacom line:5508LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5509LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5510DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5511LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5512LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5513DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5514LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5515LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5516DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5517LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5518LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5519DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5520LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5521LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.911 SMA amantzio at dynacom line:5522LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5523LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5524DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5525LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5526LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5527DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5528LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5529LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5530DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5531LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5532LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5533DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5534LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5535LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.912 SMA amantzio at dynacom line:5536LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5537LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5538DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5539LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5540LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5541DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5542LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5543LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5544DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5545LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5546LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5547DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5548LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5549LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:38.958 SMA amantzio at dynacom line:5550LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5551LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5552DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5553LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5554LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5555DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5556LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5557LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5558DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5559LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5560LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5561DETAIL: portal: ""
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5562LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5563LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:38.959 SMA amantzio at dynacom line:5564LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5565LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5566DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5567LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5568LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5569DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5570LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5571LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5572DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5573LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5574LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5575DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5576LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5577LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.006 SMA amantzio at dynacom line:5578LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5579LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5580DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5581LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5582LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5583DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5584LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5585LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5586DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5587LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5588LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5589DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5590LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5591LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.007 SMA amantzio at dynacom line:5592LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.061 SMA amantzio at dynacom line:5593LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.061 SMA amantzio at dynacom line:5594DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:39.062 SMA amantzio at dynacom line:5595LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.062 SMA amantzio at dynacom line:5596LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.062 SMA amantzio at dynacom line:5597DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.062 SMA amantzio at dynacom line:5598LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.062 SMA amantzio at dynacom line:5599LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.062 SMA amantzio at dynacom line:5600DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.062 SMA amantzio at dynacom line:5601LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.062 SMA amantzio at dynacom line:5602LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.062 SMA amantzio at dynacom line:5603DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.062 SMA amantzio at dynacom line:5604LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.062 SMA amantzio at dynacom line:5605LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.062 SMA amantzio at dynacom line:5606LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5607LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5608DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5609LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5610LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5611DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5612LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5613LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5614DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5615LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5616LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5617DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5618LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5619LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.063 SMA amantzio at dynacom line:5620LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.113 SMA amantzio at dynacom line:5621LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.113 SMA amantzio at dynacom line:5622DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:39.114 SMA amantzio at dynacom line:5623LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.114 SMA amantzio at dynacom line:5624LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.114 SMA amantzio at dynacom line:5625DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.114 SMA amantzio at dynacom line:5626LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.114 SMA amantzio at dynacom line:5627LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.114 SMA amantzio at dynacom line:5628DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.114 SMA amantzio at dynacom line:5629LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.114 SMA amantzio at dynacom line:5630LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.114 SMA amantzio at dynacom line:5631DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.114 SMA amantzio at dynacom line:5632LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.114 SMA amantzio at dynacom line:5633LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.114 SMA amantzio at dynacom line:5634LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5635LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5636DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5637LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5638LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5639DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5640LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5641LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5642DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5643LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5644LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5645DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5646LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5647LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.115 SMA amantzio at dynacom line:5648LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5649LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5650DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5651LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5652LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5653DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5654LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5655LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5656DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5657LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5658LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5659DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5660LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.160 SMA amantzio at dynacom line:5661LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.161 SMA amantzio at dynacom line:5662LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.161 SMA amantzio at dynacom line:5663LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.161 SMA amantzio at dynacom line:5664DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:39.162 SMA amantzio at dynacom line:5665LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.162 SMA amantzio at dynacom line:5666LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.162 SMA amantzio at dynacom line:5667DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.162 SMA amantzio at dynacom line:5668LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.162 SMA amantzio at dynacom line:5669LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.162 SMA amantzio at dynacom line:5670DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.162 SMA amantzio at dynacom line:5671LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.162 SMA amantzio at dynacom line:5672LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.162 SMA amantzio at dynacom line:5673DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.162 SMA amantzio at dynacom line:5674LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.162 SMA amantzio at dynacom line:5675LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.162 SMA amantzio at dynacom line:5676LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5677LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5678DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5679LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5680LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5681DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5682LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5683LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5684DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5685LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5686LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5687DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5688LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5689LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.210 SMA amantzio at dynacom line:5690LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5691LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5692DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5693LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5694LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5695DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5696LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5697LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5698DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5699LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5700LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5701DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5702LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5703LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.211 SMA amantzio at dynacom line:5704LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5705LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5706DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5707LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5708LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5709DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5710LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5711LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5712DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5713LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5714LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5715DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5716LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5717LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.259 SMA amantzio at dynacom line:5718LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5719LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5720DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5721LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5722LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5723DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5724LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5725LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5726DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5727LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5728LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5729DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5730LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5731LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.260 SMA amantzio at dynacom line:5732LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5733LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5734DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5735LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5736LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5737DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5738LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5739LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5740DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5741LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5742LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5743DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5744LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5745LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.309 SMA amantzio at dynacom line:5746LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5747LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5748DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5749LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5750LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5751DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5752LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5753LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5754DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5755LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5756LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5757DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5758LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5759LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.310 SMA amantzio at dynacom line:5760LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.365 SMA amantzio at dynacom line:5761LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.365 SMA amantzio at dynacom line:5762DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:39.365 SMA amantzio at dynacom line:5763LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.365 SMA amantzio at dynacom line:5764LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.365 SMA amantzio at dynacom line:5765DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.365 SMA amantzio at dynacom line:5766LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.365 SMA amantzio at dynacom line:5767LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.365 SMA amantzio at dynacom line:5768DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5769LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5770LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5771DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5772LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5773LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5774LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5775LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5776DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5777LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5778LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5779DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5780LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5781LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5782DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.366 SMA amantzio at dynacom line:5783LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.367 SMA amantzio at dynacom line:5784LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.367 SMA amantzio at dynacom line:5785DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.367 SMA amantzio at dynacom line:5786LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.367 SMA amantzio at dynacom line:5787LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:39.367 SMA amantzio at dynacom line:5788LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.415 SMA amantzio at dynacom line:5789LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.415 SMA amantzio at dynacom line:5790DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:39.415 SMA amantzio at dynacom line:5791LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:39.415 SMA amantzio at dynacom line:5792LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.415 SMA amantzio at dynacom line:5793DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.415 SMA amantzio at dynacom line:5794LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:39.415 SMA amantzio at dynacom line:5795LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.415 SMA amantzio at dynacom line:5796DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.415 SMA amantzio at dynacom line:5797LOG: statement: COMMIT
[60674] 2025-05-02 14:41:39.415 SMA amantzio at dynacom line:5798LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:39.415 SMA amantzio at dynacom line:5799LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5800LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5801DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5802LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5803LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5804DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5805LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5806LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5807DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5808LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5809LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5810DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5811LOG: statement:
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5812LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5813LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5814LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:39.426 SMA amantzio at dynacom line:5815DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5816LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5817LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5818DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5819LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5820LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5821DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5822LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5823LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5824DETAIL: portal: ""
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5825LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5826LOG: fetch from memory cache
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5827DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:39.427 SMA amantzio at dynacom line:5828LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5829LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5830DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5831LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5832LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5833DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5834LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5835LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5836DETAIL: portal: ""
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5837LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5838LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5839DETAIL: portal: ""
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5840LOG: statement:
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5841LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5842LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5843LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5844DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5845LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5846LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5847DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5848LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5849LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5850DETAIL: portal: ""
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5851LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5852LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5853DETAIL: portal: ""
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5854LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:42.932 SMA amantzio at dynacom line:5855LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:42.933 SMA amantzio at dynacom line:5856LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5857LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5858DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5859LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5860LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5861DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5862LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5863LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5864DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5865LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5866LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5867DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5868LOG: statement:
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5869LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:43.654 SMA amantzio at dynacom line:5870LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5871LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5872DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5873LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5874LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5875DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5876LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5877LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5878DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5879LOG: statement: BEGIN
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5880LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5881LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5882DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5883LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5884LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5885DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5886LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5887LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5888DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5889LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5890LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5891DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5892LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5893LOG: fetch from memory cache
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5894DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5895LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5896LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5897DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5898LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5899LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:43.655 SMA amantzio at dynacom line:5900DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5901LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5902LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5903DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5904LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5905LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5906DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5907LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5908LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5909LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5910LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5911DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5912LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5913LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5914DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5915LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5916LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5917DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5918LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5919LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5920DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5921LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5922LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5923LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5924LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5925DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767536,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5926LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767536,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5927LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5928DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5929LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767536,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5930LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:43.656 SMA amantzio at dynacom line:5931DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.657 SMA amantzio at dynacom line:5932LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:43.657 SMA amantzio at dynacom line:5933LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:43.657 SMA amantzio at dynacom line:5934DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.657 SMA amantzio at dynacom line:5935LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767536,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:43.657 SMA amantzio at dynacom line:5936LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767536,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:43.657 SMA amantzio at dynacom line:5937LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:43.666 SMA amantzio at dynacom line:5938LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:43.666 SMA amantzio at dynacom line:5939DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:43.666 SMA amantzio at dynacom line:5940LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:43.666 SMA amantzio at dynacom line:5941LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:43.666 SMA amantzio at dynacom line:5942DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:43.666 SMA amantzio at dynacom line:5943LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:43.666 SMA amantzio at dynacom line:5944LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:43.666 SMA amantzio at dynacom line:5945DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.666 SMA amantzio at dynacom line:5946LOG: statement: COMMIT
[60674] 2025-05-02 14:41:43.666 SMA amantzio at dynacom line:5947LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:43.666 SMA amantzio at dynacom line:5948LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:43.679 SMA amantzio at dynacom line:5949LOG: error while deleting item from shmem cache, item: 260 was already deleted
[60674] 2025-05-02 14:41:43.679 SMA amantzio at dynacom line:5950LOG: error while deleting item from shmem cache, item: 262 was already deleted
[60674] 2025-05-02 14:41:43.679 SMA amantzio at dynacom line:5951LOG: error while deleting item from shmem cache, item: 264 was already deleted
[60674] 2025-05-02 14:41:43.679 SMA amantzio at dynacom line:5952LOG: error while deleting item from shmem cache, item: 266 was already deleted
[60674] 2025-05-02 14:41:43.679 SMA amantzio at dynacom line:5953LOG: error while deleting item from shmem cache, item: 268 was already deleted
[60674] 2025-05-02 14:41:43.679 SMA amantzio at dynacom line:5954LOG: error while deleting item from shmem cache, item: 270 was already deleted
[60674] 2025-05-02 14:41:43.679 SMA amantzio at dynacom line:5955LOG: error while deleting item from shmem cache, item: 272 was already deleted
[60674] 2025-05-02 14:41:43.679 SMA amantzio at dynacom line:5956LOG: error while deleting item from shmem cache, item: 274 was already deleted
[60674] 2025-05-02 14:41:43.679 SMA amantzio at dynacom line:5957LOG: error while deleting item from shmem cache, item: 276 was already deleted
[60674] 2025-05-02 14:41:43.679 SMA amantzio at dynacom line:5958LOG: error while deleting item from shmem cache, item: 278 was already deleted
[60674] 2025-05-02 14:41:43.679 SMA amantzio at dynacom line:5959LOG: error while deleting item from shmem cache, item: 280 was already deleted
[60674] 2025-05-02 14:41:43.679 SMA amantzio at dynacom line:5960LOG: error while deleting item from shmem cache, item: 282 was already deleted
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5961LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5962DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5963LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5964LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5965DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5966LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5967LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5968DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5969LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5970LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5971DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5972LOG: statement:
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5973LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5974LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5975LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5976DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5977LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5978LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5979DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5980LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5981LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5982DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5983LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5984LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5985DETAIL: portal: ""
[60674] 2025-05-02 14:41:43.837 SMA amantzio at dynacom line:5986LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:43.838 SMA amantzio at dynacom line:5987LOG: fetch from memory cache
[60674] 2025-05-02 14:41:43.838 SMA amantzio at dynacom line:5988DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:43.838 SMA amantzio at dynacom line:5989LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:5990LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:5991DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:5992LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:5993LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:5994DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:5995LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:5996LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:5997DETAIL: portal: ""
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:5998LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:5999LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:6000DETAIL: portal: ""
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:6001LOG: statement:
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:6002LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:45.563 SMA amantzio at dynacom line:6003LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6004LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6005DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6006LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6007LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6008DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6009LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6010LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6011DETAIL: portal: ""
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6012LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6013LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6014DETAIL: portal: ""
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6015LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6016LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:45.564 SMA amantzio at dynacom line:6017LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6018LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6019DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6020LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6021LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6022DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6023LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6024LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6025DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6026LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6027LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6028DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6029LOG: statement:
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6030LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6031LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6032LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6033DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6034LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6035LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6036DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6037LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6038LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6039DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6040LOG: statement: BEGIN
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6041LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6042LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6043DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6044LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6045LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6046DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6047LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6048LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6049DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6050LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6051LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6052DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.279 SMA amantzio at dynacom line:6053LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6054LOG: fetch from memory cache
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6055DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6056LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6057LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6058DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6059LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6060LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6061DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6062LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6063LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6064DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6065LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6066LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6067DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6068LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6069LOG: fetch from memory cache
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6070DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6071LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6072LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6073DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6074LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6075LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6076DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.280 SMA amantzio at dynacom line:6077LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6078LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6079DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6080LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6081LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6082DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6083LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6084LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6085LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6086LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6087DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6088LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6089LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6090DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6091LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6092LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6093DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6094LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6095LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6096DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6097LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6098LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.281 SMA amantzio at dynacom line:6099LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6100LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6101DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6102LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6103LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6104DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6105LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6106LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6107DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6108LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6109LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6110DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6111LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6112LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.282 SMA amantzio at dynacom line:6113LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6114LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6115DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6116LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6117LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6118DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6119LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6120LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6121DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6122LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6123LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6124DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6125LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6126LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.333 SMA amantzio at dynacom line:6127LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6128LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6129DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6130LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6131LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6132DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6133LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6134LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6135DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6136LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6137LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6138DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6139LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6140LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.334 SMA amantzio at dynacom line:6141LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6142LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6143DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6144LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6145LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6146DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6147LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6148LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6149DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6150LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6151LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6152DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6153LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6154LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.379 SMA amantzio at dynacom line:6155LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6156LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6157DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6158LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6159LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6160DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6161LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6162LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6163DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6164LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6165LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6166DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6167LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6168LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.380 SMA amantzio at dynacom line:6169LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.428 SMA amantzio at dynacom line:6170LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.428 SMA amantzio at dynacom line:6171DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.429 SMA amantzio at dynacom line:6172LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.429 SMA amantzio at dynacom line:6173LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.429 SMA amantzio at dynacom line:6174DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.429 SMA amantzio at dynacom line:6175LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.429 SMA amantzio at dynacom line:6176LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.429 SMA amantzio at dynacom line:6177DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.429 SMA amantzio at dynacom line:6178LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.429 SMA amantzio at dynacom line:6179LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.429 SMA amantzio at dynacom line:6180DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.429 SMA amantzio at dynacom line:6181LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.429 SMA amantzio at dynacom line:6182LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.429 SMA amantzio at dynacom line:6183LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6184LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6185DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6186LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6187LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6188DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6189LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6190LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6191DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6192LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6193LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6194DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6195LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6196LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.430 SMA amantzio at dynacom line:6197LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6198LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6199DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6200LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6201LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6202DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6203LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6204LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6205DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6206LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6207LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6208DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6209LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6210LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.478 SMA amantzio at dynacom line:6211LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6212LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6213DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6214LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6215LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6216DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6217LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6218LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6219DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6220LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6221LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6222DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6223LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6224LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.479 SMA amantzio at dynacom line:6225LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6226LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6227DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6228LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6229LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6230DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6231LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6232LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6233DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6234LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6235LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6236DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6237LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6238LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.531 SMA amantzio at dynacom line:6239LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6240LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6241DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6242LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6243LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6244DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6245LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6246LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6247DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6248LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6249LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6250DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6251LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6252LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.532 SMA amantzio at dynacom line:6253LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.575 SMA amantzio at dynacom line:6254LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.575 SMA amantzio at dynacom line:6255DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.576 SMA amantzio at dynacom line:6256LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.576 SMA amantzio at dynacom line:6257LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.576 SMA amantzio at dynacom line:6258DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.576 SMA amantzio at dynacom line:6259LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.576 SMA amantzio at dynacom line:6260LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.576 SMA amantzio at dynacom line:6261DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.576 SMA amantzio at dynacom line:6262LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.576 SMA amantzio at dynacom line:6263LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.576 SMA amantzio at dynacom line:6264DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.576 SMA amantzio at dynacom line:6265LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.576 SMA amantzio at dynacom line:6266LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.576 SMA amantzio at dynacom line:6267LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6268LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6269DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6270LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6271LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6272DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6273LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6274LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6275DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6276LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6277LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6278DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6279LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6280LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.577 SMA amantzio at dynacom line:6281LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6282LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6283DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6284LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6285LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6286DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6287LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6288LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6289DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6290LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6291LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6292DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6293LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6294LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.624 SMA amantzio at dynacom line:6295LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6296LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6297DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6298LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6299LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6300DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6301LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6302LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6303DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6304LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6305LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6306DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6307LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6308LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.625 SMA amantzio at dynacom line:6309LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6310LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6311DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6312LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6313LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6314DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6315LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6316LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6317DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6318LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6319LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6320DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6321LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6322LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.677 SMA amantzio at dynacom line:6323LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6324LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6325DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6326LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6327LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6328DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6329LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6330LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6331DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6332LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6333LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6334DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6335LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6336LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.678 SMA amantzio at dynacom line:6337LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6338LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6339DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6340LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6341LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6342DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6343LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6344LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6345DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6346LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6347LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6348DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6349LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6350LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.722 SMA amantzio at dynacom line:6351LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6352LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6353DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6354LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6355LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6356DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6357LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6358LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6359DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6360LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6361LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6362DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6363LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6364LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.723 SMA amantzio at dynacom line:6365LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6366LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6367DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6368LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6369LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6370DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6371LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6372LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6373DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6374LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6375LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6376DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6377LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6378LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.766 SMA amantzio at dynacom line:6379LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6380LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6381DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6382LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6383LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6384DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6385LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6386LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6387DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6388LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6389LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6390DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6391LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6392LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.767 SMA amantzio at dynacom line:6393LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.810 SMA amantzio at dynacom line:6394LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.810 SMA amantzio at dynacom line:6395DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.811 SMA amantzio at dynacom line:6396LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.811 SMA amantzio at dynacom line:6397LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.811 SMA amantzio at dynacom line:6398DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.811 SMA amantzio at dynacom line:6399LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.811 SMA amantzio at dynacom line:6400LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.811 SMA amantzio at dynacom line:6401DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.811 SMA amantzio at dynacom line:6402LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.811 SMA amantzio at dynacom line:6403LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.811 SMA amantzio at dynacom line:6404DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.811 SMA amantzio at dynacom line:6405LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.811 SMA amantzio at dynacom line:6406LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.811 SMA amantzio at dynacom line:6407LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6408LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6409DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6410LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6411LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6412DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6413LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6414LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6415DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6416LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6417LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6418DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6419LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6420LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.812 SMA amantzio at dynacom line:6421LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.855 SMA amantzio at dynacom line:6422LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.855 SMA amantzio at dynacom line:6423DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:46.856 SMA amantzio at dynacom line:6424LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.856 SMA amantzio at dynacom line:6425LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.856 SMA amantzio at dynacom line:6426DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.856 SMA amantzio at dynacom line:6427LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.856 SMA amantzio at dynacom line:6428LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.856 SMA amantzio at dynacom line:6429DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.856 SMA amantzio at dynacom line:6430LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.856 SMA amantzio at dynacom line:6431LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.856 SMA amantzio at dynacom line:6432DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.856 SMA amantzio at dynacom line:6433LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.856 SMA amantzio at dynacom line:6434LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:46.856 SMA amantzio at dynacom line:6435LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6436LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6437DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6438LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6439LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6440DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6441LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6442LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6443DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6444LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6445LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6446DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6447LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6448LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:46.857 SMA amantzio at dynacom line:6449LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.905 SMA amantzio at dynacom line:6450LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.905 SMA amantzio at dynacom line:6451DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:46.905 SMA amantzio at dynacom line:6452LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:46.905 SMA amantzio at dynacom line:6453LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.905 SMA amantzio at dynacom line:6454DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.906 SMA amantzio at dynacom line:6455LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:46.906 SMA amantzio at dynacom line:6456LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.906 SMA amantzio at dynacom line:6457DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.906 SMA amantzio at dynacom line:6458LOG: statement: COMMIT
[60674] 2025-05-02 14:41:46.906 SMA amantzio at dynacom line:6459LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:46.906 SMA amantzio at dynacom line:6460LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6461LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6462DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6463LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6464LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6465DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6466LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6467LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6468DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6469LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6470LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6471DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6472LOG: statement:
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6473LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6474LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6475LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6476DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6477LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6478LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6479DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6480LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6481LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6482DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6483LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6484LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6485DETAIL: portal: ""
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6486LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6487LOG: fetch from memory cache
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6488DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:46.917 SMA amantzio at dynacom line:6489LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6490LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6491DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6492LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6493LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6494DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6495LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6496LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6497DETAIL: portal: ""
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6498LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6499LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6500DETAIL: portal: ""
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6501LOG: statement:
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6502LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6503LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6504LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6505DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6506LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6507LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6508DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6509LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6510LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6511DETAIL: portal: ""
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6512LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6513LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6514DETAIL: portal: ""
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6515LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6516LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:50.860 SMA amantzio at dynacom line:6517LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6518LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6519DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6520LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6521LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6522DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6523LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6524LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6525DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6526LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6527LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6528DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6529LOG: statement:
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6530LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6531LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6532LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6533DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6534LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6535LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6536DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6537LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6538LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6539DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6540LOG: statement: BEGIN
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6541LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6542LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:51.591 SMA amantzio at dynacom line:6543DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6544LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6545LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6546DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6547LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6548LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6549DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6550LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6551LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6552DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6553LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6554LOG: fetch from memory cache
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6555DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6556LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6557LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6558DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6559LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6560LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6561DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6562LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6563LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6564DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6565LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6566LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6567DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6568LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6569LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:51.592 SMA amantzio at dynacom line:6570LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6571LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6572DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6573LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6574LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6575DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6576LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6577LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6578DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6579LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6580LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6581DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6582LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6583LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6584LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6585LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6586DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767537,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6587LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767537,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6588LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6589DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6590LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767537,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6591LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6592DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6593LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6594LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6595DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6596LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767537,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6597LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767537,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:51.593 SMA amantzio at dynacom line:6598LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:51.597 SMA amantzio at dynacom line:6599LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:51.597 SMA amantzio at dynacom line:6600DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:51.597 SMA amantzio at dynacom line:6601LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:51.597 SMA amantzio at dynacom line:6602LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:51.597 SMA amantzio at dynacom line:6603DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:51.597 SMA amantzio at dynacom line:6604LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:51.597 SMA amantzio at dynacom line:6605LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:51.597 SMA amantzio at dynacom line:6606DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.597 SMA amantzio at dynacom line:6607LOG: statement: COMMIT
[60674] 2025-05-02 14:41:51.597 SMA amantzio at dynacom line:6608LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:51.597 SMA amantzio at dynacom line:6609LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:51.614 SMA amantzio at dynacom line:6610LOG: error while deleting item from shmem cache, item: 284 was already deleted
[60674] 2025-05-02 14:41:51.614 SMA amantzio at dynacom line:6611LOG: error while deleting item from shmem cache, item: 286 was already deleted
[60674] 2025-05-02 14:41:51.614 SMA amantzio at dynacom line:6612LOG: error while deleting item from shmem cache, item: 288 was already deleted
[60674] 2025-05-02 14:41:51.615 SMA amantzio at dynacom line:6613LOG: error while deleting item from shmem cache, item: 290 was already deleted
[60674] 2025-05-02 14:41:51.615 SMA amantzio at dynacom line:6614LOG: error while deleting item from shmem cache, item: 292 was already deleted
[60674] 2025-05-02 14:41:51.615 SMA amantzio at dynacom line:6615LOG: error while deleting item from shmem cache, item: 294 was already deleted
[60674] 2025-05-02 14:41:51.615 SMA amantzio at dynacom line:6616LOG: error while deleting item from shmem cache, item: 296 was already deleted
[60674] 2025-05-02 14:41:51.615 SMA amantzio at dynacom line:6617LOG: error while deleting item from shmem cache, item: 298 was already deleted
[60674] 2025-05-02 14:41:51.615 SMA amantzio at dynacom line:6618LOG: error while deleting item from shmem cache, item: 300 was already deleted
[60674] 2025-05-02 14:41:51.615 SMA amantzio at dynacom line:6619LOG: error while deleting item from shmem cache, item: 302 was already deleted
[60674] 2025-05-02 14:41:51.615 SMA amantzio at dynacom line:6620LOG: error while deleting item from shmem cache, item: 304 was already deleted
[60674] 2025-05-02 14:41:51.615 SMA amantzio at dynacom line:6621LOG: error while deleting item from shmem cache, item: 306 was already deleted
[60674] 2025-05-02 14:41:51.615 SMA amantzio at dynacom line:6622LOG: error while deleting item from shmem cache, item: 308 was already deleted
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6623LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6624DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6625LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6626LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6627DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6628LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6629LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6630DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6631LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6632LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6633DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6634LOG: statement:
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6635LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6636LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6637LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6638DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6639LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6640LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6641DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6642LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6643LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6644DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6645LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6646LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6647DETAIL: portal: ""
[60674] 2025-05-02 14:41:51.792 SMA amantzio at dynacom line:6648LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:51.793 SMA amantzio at dynacom line:6649LOG: fetch from memory cache
[60674] 2025-05-02 14:41:51.793 SMA amantzio at dynacom line:6650DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:51.793 SMA amantzio at dynacom line:6651LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6652LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6653DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6654LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6655LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6656DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6657LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6658LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6659DETAIL: portal: ""
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6660LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6661LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6662DETAIL: portal: ""
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6663LOG: statement:
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6664LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:52.716 SMA amantzio at dynacom line:6665LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6666LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6667DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6668LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6669LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6670DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6671LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6672LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6673DETAIL: portal: ""
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6674LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6675LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6676DETAIL: portal: ""
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6677LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6678LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:52.717 SMA amantzio at dynacom line:6679LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6680LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6681DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6682LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6683LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6684DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6685LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6686LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6687DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6688LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6689LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6690DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6691LOG: statement:
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6692LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:53.431 SMA amantzio at dynacom line:6693LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6694LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6695DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6696LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6697LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6698DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6699LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6700LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6701DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6702LOG: statement: BEGIN
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6703LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6704LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6705DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6706LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6707LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6708DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6709LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6710LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6711DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6712LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6713LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6714DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6715LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6716LOG: fetch from memory cache
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6717DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6718LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6719LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.432 SMA amantzio at dynacom line:6720DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6721LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6722LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6723DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6724LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6725LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6726DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6727LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6728LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6729DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6730LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6731LOG: fetch from memory cache
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6732DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6733LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6734LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6735DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6736LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6737LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6738DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6739LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6740LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6741DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6742LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6743LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6744DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6745LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6746LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6747LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6748LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.433 SMA amantzio at dynacom line:6749DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6750LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6751LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6752DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6753LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6754LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6755DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6756LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6757LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6758DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6759LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6760LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6761LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6762LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6763DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6764LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6765LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6766DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6767LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6768LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6769DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6770LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6771LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6772DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6773LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6774LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.434 SMA amantzio at dynacom line:6775LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6776LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6777DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6778LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6779LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6780DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6781LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6782LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6783DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6784LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6785LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6786DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6787LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6788LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.487 SMA amantzio at dynacom line:6789LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6790LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6791DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6792LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6793LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6794DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6795LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6796LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6797DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6798LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6799LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6800DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6801LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6802LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.488 SMA amantzio at dynacom line:6803LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.538 SMA amantzio at dynacom line:6804LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.538 SMA amantzio at dynacom line:6805DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:53.539 SMA amantzio at dynacom line:6806LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.539 SMA amantzio at dynacom line:6807LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.539 SMA amantzio at dynacom line:6808DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.539 SMA amantzio at dynacom line:6809LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.539 SMA amantzio at dynacom line:6810LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.539 SMA amantzio at dynacom line:6811DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.539 SMA amantzio at dynacom line:6812LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.539 SMA amantzio at dynacom line:6813LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.539 SMA amantzio at dynacom line:6814DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.539 SMA amantzio at dynacom line:6815LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.539 SMA amantzio at dynacom line:6816LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.539 SMA amantzio at dynacom line:6817LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6818LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6819DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6820LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6821LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6822DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6823LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6824LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6825DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6826LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6827LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6828DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6829LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6830LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.540 SMA amantzio at dynacom line:6831LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6832LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6833DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6834LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6835LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6836DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6837LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6838LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6839DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6840LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6841LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6842DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6843LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6844LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.587 SMA amantzio at dynacom line:6845LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6846LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6847DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6848LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6849LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6850DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6851LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6852LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6853DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6854LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6855LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6856DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6857LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6858LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.588 SMA amantzio at dynacom line:6859LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6860LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6861DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6862LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6863LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6864DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6865LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6866LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6867DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6868LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6869LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6870DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6871LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6872LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.638 SMA amantzio at dynacom line:6873LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6874LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6875DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6876LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6877LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6878DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6879LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6880LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6881DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6882LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6883LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6884DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6885LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.639 SMA amantzio at dynacom line:6886LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.640 SMA amantzio at dynacom line:6887LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6888LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6889DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6890LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6891LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6892DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6893LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6894LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6895DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6896LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6897LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6898DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6899LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6900LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.688 SMA amantzio at dynacom line:6901LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6902LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6903DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6904LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6905LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6906DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6907LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6908LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6909DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6910LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6911LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6912DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6913LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6914LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.689 SMA amantzio at dynacom line:6915LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6916LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6917DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6918LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6919LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6920DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6921LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6922LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6923DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6924LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6925LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6926DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6927LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6928LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.736 SMA amantzio at dynacom line:6929LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6930LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6931DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6932LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6933LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6934DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6935LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6936LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6937DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6938LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6939LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6940DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6941LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6942LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.737 SMA amantzio at dynacom line:6943LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6944LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6945DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6946LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6947LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6948DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6949LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6950LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6951DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6952LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6953LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6954DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6955LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6956LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.785 SMA amantzio at dynacom line:6957LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6958LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6959DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6960LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6961LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6962DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6963LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6964LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6965DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6966LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6967LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6968DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6969LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6970LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.786 SMA amantzio at dynacom line:6971LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6972LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6973DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6974LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6975LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6976DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6977LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6978LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6979DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6980LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6981LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6982DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6983LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6984LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.836 SMA amantzio at dynacom line:6985LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6986LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6987DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6988LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6989LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6990DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6991LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6992LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6993DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6994LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6995LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6996DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6997LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6998LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.837 SMA amantzio at dynacom line:6999LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.882 SMA amantzio at dynacom line:7000LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.882 SMA amantzio at dynacom line:7001DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:53.883 SMA amantzio at dynacom line:7002LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.883 SMA amantzio at dynacom line:7003LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.883 SMA amantzio at dynacom line:7004DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.883 SMA amantzio at dynacom line:7005LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.883 SMA amantzio at dynacom line:7006LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.883 SMA amantzio at dynacom line:7007DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.883 SMA amantzio at dynacom line:7008LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.883 SMA amantzio at dynacom line:7009LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.883 SMA amantzio at dynacom line:7010DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.883 SMA amantzio at dynacom line:7011LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.883 SMA amantzio at dynacom line:7012LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.883 SMA amantzio at dynacom line:7013LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7014LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7015DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7016LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7017LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7018DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7019LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7020LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7021DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7022LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7023LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7024DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7025LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7026LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.884 SMA amantzio at dynacom line:7027LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7028LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7029DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7030LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7031LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7032DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7033LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7034LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7035DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7036LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7037LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7038DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7039LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7040LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.930 SMA amantzio at dynacom line:7041LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.931 SMA amantzio at dynacom line:7042LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.931 SMA amantzio at dynacom line:7043DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:53.931 SMA amantzio at dynacom line:7044LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.931 SMA amantzio at dynacom line:7045LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.931 SMA amantzio at dynacom line:7046DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.931 SMA amantzio at dynacom line:7047LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.931 SMA amantzio at dynacom line:7048LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.931 SMA amantzio at dynacom line:7049DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.931 SMA amantzio at dynacom line:7050LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.931 SMA amantzio at dynacom line:7051LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.931 SMA amantzio at dynacom line:7052DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.931 SMA amantzio at dynacom line:7053LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.932 SMA amantzio at dynacom line:7054LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.932 SMA amantzio at dynacom line:7055LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7056LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7057DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7058LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7059LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7060DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7061LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7062LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7063DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7064LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7065LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7066DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7067LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7068LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:53.981 SMA amantzio at dynacom line:7069LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7070LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7071DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7072LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7073LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7074DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7075LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7076LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7077DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7078LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7079LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7080DETAIL: portal: ""
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7081LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7082LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:53.982 SMA amantzio at dynacom line:7083LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7084LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7085DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7086LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7087LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7088DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7089LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7090LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7091DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7092LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7093LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7094DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7095LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7096LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:54.030 SMA amantzio at dynacom line:7097LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7098LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7099DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7100LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7101LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7102DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7103LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7104LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7105DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7106LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7107LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7108DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7109LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7110LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:54.031 SMA amantzio at dynacom line:7111LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:54.077 SMA amantzio at dynacom line:7112LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:54.077 SMA amantzio at dynacom line:7113DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:41:54.078 SMA amantzio at dynacom line:7114LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:54.078 SMA amantzio at dynacom line:7115LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:54.078 SMA amantzio at dynacom line:7116DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:54.078 SMA amantzio at dynacom line:7117LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:54.078 SMA amantzio at dynacom line:7118LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:54.078 SMA amantzio at dynacom line:7119DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.078 SMA amantzio at dynacom line:7120LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:54.078 SMA amantzio at dynacom line:7121LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:54.078 SMA amantzio at dynacom line:7122DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.078 SMA amantzio at dynacom line:7123LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:54.078 SMA amantzio at dynacom line:7124LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:41:54.078 SMA amantzio at dynacom line:7125LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7126LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7127DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7128LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7129LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7130DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7131LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7132LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7133DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7134LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7135LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7136DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7137LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7138LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:41:54.079 SMA amantzio at dynacom line:7139LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:54.125 SMA amantzio at dynacom line:7140LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:54.125 SMA amantzio at dynacom line:7141DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:54.125 SMA amantzio at dynacom line:7142LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:54.125 SMA amantzio at dynacom line:7143LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:54.125 SMA amantzio at dynacom line:7144DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:54.125 SMA amantzio at dynacom line:7145LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:54.125 SMA amantzio at dynacom line:7146LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:54.125 SMA amantzio at dynacom line:7147DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.125 SMA amantzio at dynacom line:7148LOG: statement: COMMIT
[60674] 2025-05-02 14:41:54.125 SMA amantzio at dynacom line:7149LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:54.125 SMA amantzio at dynacom line:7150LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7151LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7152DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7153LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7154LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7155DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7156LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7157LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7158DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7159LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7160LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7161DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7162LOG: statement:
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7163LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:54.135 SMA amantzio at dynacom line:7164LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7165LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7166DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7167LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7168LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7169DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7170LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7171LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7172DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7173LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7174LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7175DETAIL: portal: ""
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7176LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7177LOG: fetch from memory cache
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7178DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:54.136 SMA amantzio at dynacom line:7179LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7180LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7181DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7182LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7183LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7184DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7185LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7186LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7187DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7188LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7189LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7190DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7191LOG: statement:
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7192LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:58.083 SMA amantzio at dynacom line:7193LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7194LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7195DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7196LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7197LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7198DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7199LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7200LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7201DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7202LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7203LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7204DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7205LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7206LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:41:58.084 SMA amantzio at dynacom line:7207LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7208LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7209DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7210LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7211LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7212DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7213LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7214LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7215DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7216LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7217LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7218DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7219LOG: statement:
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7220LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7221LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7222LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7223DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7224LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7225LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7226DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7227LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7228LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7229DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.794 SMA amantzio at dynacom line:7230LOG: statement: BEGIN
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7231LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7232LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7233DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7234LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7235LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7236DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7237LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7238LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7239DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7240LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7241LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7242DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7243LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7244LOG: fetch from memory cache
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7245DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7246LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7247LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7248DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7249LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7250LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7251DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7252LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7253LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7254DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7255LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7256LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7257DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7258LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7259LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:41:58.795 SMA amantzio at dynacom line:7260LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7261LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7262DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7263LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7264LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7265DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7266LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7267LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7268DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7269LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7270LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7271DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7272LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7273LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7274LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7275LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7276DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767538,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7277LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767538,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7278LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7279DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7280LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767538,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7281LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7282DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7283LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7284LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7285DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7286LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767538,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7287LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767538,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:41:58.796 SMA amantzio at dynacom line:7288LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:58.799 SMA amantzio at dynacom line:7289LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:58.799 SMA amantzio at dynacom line:7290DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:41:58.799 SMA amantzio at dynacom line:7291LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:41:58.799 SMA amantzio at dynacom line:7292LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:58.799 SMA amantzio at dynacom line:7293DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:58.799 SMA amantzio at dynacom line:7294LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:41:58.799 SMA amantzio at dynacom line:7295LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:58.799 SMA amantzio at dynacom line:7296DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.799 SMA amantzio at dynacom line:7297LOG: statement: COMMIT
[60674] 2025-05-02 14:41:58.799 SMA amantzio at dynacom line:7298LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:41:58.799 SMA amantzio at dynacom line:7299LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7300LOG: error while deleting item from shmem cache, item: 310 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7301LOG: error while deleting item from shmem cache, item: 312 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7302LOG: error while deleting item from shmem cache, item: 314 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7303LOG: error while deleting item from shmem cache, item: 316 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7304LOG: error while deleting item from shmem cache, item: 318 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7305LOG: error while deleting item from shmem cache, item: 320 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7306LOG: error while deleting item from shmem cache, item: 322 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7307LOG: error while deleting item from shmem cache, item: 324 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7308LOG: error while deleting item from shmem cache, item: 326 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7309LOG: error while deleting item from shmem cache, item: 328 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7310LOG: error while deleting item from shmem cache, item: 330 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7311LOG: error while deleting item from shmem cache, item: 332 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7312LOG: error while deleting item from shmem cache, item: 334 was already deleted
[60674] 2025-05-02 14:41:58.805 SMA amantzio at dynacom line:7313LOG: error while deleting item from shmem cache, item: 336 was already deleted
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7314LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7315DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7316LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7317LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7318DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7319LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7320LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7321DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7322LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7323LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7324DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7325LOG: statement:
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7326LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7327LOG: Sync message from frontend.
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7328LOG: Parse message from frontend.
[60674] 2025-05-02 14:41:58.813 SMA amantzio at dynacom line:7329DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7330LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7331LOG: Bind message from frontend.
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7332DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7333LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7334LOG: Describe message from frontend.
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7335DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7336LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7337LOG: Execute message from frontend.
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7338DETAIL: portal: ""
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7339LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7340LOG: fetch from memory cache
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7341DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:41:58.814 SMA amantzio at dynacom line:7342LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7343LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7344DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7345LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7346LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7347DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7348LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7349LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7350DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7351LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7352LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7353DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7354LOG: statement:
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7355LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7356LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7357LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.108 SMA amantzio at dynacom line:7358DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:42:00.109 SMA amantzio at dynacom line:7359LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:42:00.109 SMA amantzio at dynacom line:7360LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.109 SMA amantzio at dynacom line:7361DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.109 SMA amantzio at dynacom line:7362LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:42:00.109 SMA amantzio at dynacom line:7363LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.109 SMA amantzio at dynacom line:7364DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.109 SMA amantzio at dynacom line:7365LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.109 SMA amantzio at dynacom line:7366LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.109 SMA amantzio at dynacom line:7367DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.109 SMA amantzio at dynacom line:7368LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:42:00.109 SMA amantzio at dynacom line:7369LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:42:00.109 SMA amantzio at dynacom line:7370LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7371LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7372DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7373LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7374LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7375DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7376LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7377LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7378DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7379LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7380LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7381DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7382LOG: statement:
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7383LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:42:00.837 SMA amantzio at dynacom line:7384LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7385LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7386DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7387LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7388LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7389DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7390LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7391LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7392DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7393LOG: statement: BEGIN
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7394LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7395LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7396DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7397LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7398LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7399DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7400LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7401LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7402DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7403LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7404LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7405DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7406LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7407LOG: fetch from memory cache
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7408DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7409LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7410LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.838 SMA amantzio at dynacom line:7411DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7412LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7413LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7414DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7415LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7416LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7417DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7418LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7419LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7420DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7421LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7422LOG: fetch from memory cache
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7423DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7424LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7425LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7426DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7427LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7428LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7429DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7430LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7431LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7432DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7433LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7434LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7435DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7436LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7437LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7438LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7439LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7440DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7441LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7442LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7443DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7444LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7445LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7446DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7447LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7448LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7449DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.839 SMA amantzio at dynacom line:7450LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7451LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7452LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7453LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7454DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7455LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7456LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7457DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7458LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7459LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7460DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7461LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7462LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7463DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7464LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7465LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.840 SMA amantzio at dynacom line:7466LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7467LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7468DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7469LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7470LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7471DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7472LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7473LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7474DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7475LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7476LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7477DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7478LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7479LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.887 SMA amantzio at dynacom line:7480LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7481LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7482DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7483LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7484LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7485DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7486LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7487LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7488DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7489LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7490LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7491DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7492LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7493LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.888 SMA amantzio at dynacom line:7494LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7495LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7496DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7497LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7498LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7499DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7500LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7501LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7502DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7503LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7504LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7505DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7506LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7507LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.936 SMA amantzio at dynacom line:7508LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7509LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7510DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7511LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7512LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7513DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7514LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7515LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7516DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7517LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7518LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7519DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7520LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7521LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.937 SMA amantzio at dynacom line:7522LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7523LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7524DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7525LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7526LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7527DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7528LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7529LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7530DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7531LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7532LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7533DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7534LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7535LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:00.984 SMA amantzio at dynacom line:7536LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7537LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7538DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7539LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7540LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7541DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7542LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7543LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7544DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7545LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7546LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7547DETAIL: portal: ""
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7548LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7549LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:00.985 SMA amantzio at dynacom line:7550LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7551LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7552DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7553LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7554LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7555DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7556LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7557LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7558DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7559LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7560LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7561DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7562LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7563LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.037 SMA amantzio at dynacom line:7564LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7565LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7566DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7567LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7568LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7569DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7570LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7571LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7572DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7573LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7574LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7575DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7576LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7577LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.038 SMA amantzio at dynacom line:7578LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.092 SMA amantzio at dynacom line:7579LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.092 SMA amantzio at dynacom line:7580DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:01.092 SMA amantzio at dynacom line:7581LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.092 SMA amantzio at dynacom line:7582LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.092 SMA amantzio at dynacom line:7583DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.092 SMA amantzio at dynacom line:7584LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.092 SMA amantzio at dynacom line:7585LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.092 SMA amantzio at dynacom line:7586DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.092 SMA amantzio at dynacom line:7587LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.093 SMA amantzio at dynacom line:7588LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.093 SMA amantzio at dynacom line:7589DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.093 SMA amantzio at dynacom line:7590LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.093 SMA amantzio at dynacom line:7591LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.093 SMA amantzio at dynacom line:7592LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7593LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7594DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7595LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7596LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7597DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7598LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7599LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7600DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7601LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7602LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7603DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7604LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7605LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.094 SMA amantzio at dynacom line:7606LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7607LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7608DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7609LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7610LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7611DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7612LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7613LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7614DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7615LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7616LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7617DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7618LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7619LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.144 SMA amantzio at dynacom line:7620LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7621LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7622DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7623LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7624LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7625DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7626LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7627LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7628DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7629LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7630LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7631DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7632LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7633LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.145 SMA amantzio at dynacom line:7634LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7635LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7636DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7637LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7638LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7639DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7640LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7641LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7642DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7643LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7644LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7645DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7646LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7647LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.193 SMA amantzio at dynacom line:7648LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7649LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7650DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7651LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7652LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7653DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7654LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7655LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7656DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7657LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7658LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7659DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7660LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7661LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.194 SMA amantzio at dynacom line:7662LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7663LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7664DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7665LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7666LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7667DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7668LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7669LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7670DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7671LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7672LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7673DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7674LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7675LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.241 SMA amantzio at dynacom line:7676LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7677LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7678DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7679LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7680LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7681DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7682LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7683LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7684DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7685LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7686LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7687DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7688LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7689LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.242 SMA amantzio at dynacom line:7690LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7691LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7692DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7693LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7694LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7695DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7696LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7697LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7698DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7699LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7700LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7701DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7702LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7703LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.288 SMA amantzio at dynacom line:7704LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7705LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7706DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7707LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7708LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7709DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7710LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7711LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7712DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7713LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7714LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7715DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7716LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7717LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.289 SMA amantzio at dynacom line:7718LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7719LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7720DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7721LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7722LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7723DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7724LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7725LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7726DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7727LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7728LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7729DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7730LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7731LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.338 SMA amantzio at dynacom line:7732LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7733LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7734DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7735LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7736LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7737DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7738LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7739LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7740DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7741LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7742LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7743DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7744LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7745LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.339 SMA amantzio at dynacom line:7746LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7747LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7748DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7749LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7750LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7751DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7752LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7753LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7754DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7755LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7756LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7757DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7758LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7759LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.383 SMA amantzio at dynacom line:7760LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7761LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7762DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7763LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7764LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7765DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7766LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7767LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7768DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7769LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7770LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7771DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7772LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7773LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.384 SMA amantzio at dynacom line:7774LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7775LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7776DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7777LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7778LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7779DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7780LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7781LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7782DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7783LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7784LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7785DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7786LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7787LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.427 SMA amantzio at dynacom line:7788LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7789LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7790DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7791LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7792LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7793DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7794LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7795LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7796DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7797LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7798LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7799DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7800LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7801LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.428 SMA amantzio at dynacom line:7802LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7803LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7804DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7805LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7806LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7807DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7808LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7809LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7810DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7811LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7812LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7813DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7814LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7815LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.476 SMA amantzio at dynacom line:7816LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7817LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7818DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7819LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7820LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7821DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7822LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7823LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7824DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7825LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7826LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7827DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7828LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7829LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.477 SMA amantzio at dynacom line:7830LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.520 SMA amantzio at dynacom line:7831LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.520 SMA amantzio at dynacom line:7832DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:01.521 SMA amantzio at dynacom line:7833LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.521 SMA amantzio at dynacom line:7834LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.521 SMA amantzio at dynacom line:7835DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.521 SMA amantzio at dynacom line:7836LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.521 SMA amantzio at dynacom line:7837LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.521 SMA amantzio at dynacom line:7838DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.521 SMA amantzio at dynacom line:7839LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.521 SMA amantzio at dynacom line:7840LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.521 SMA amantzio at dynacom line:7841DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.521 SMA amantzio at dynacom line:7842LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.521 SMA amantzio at dynacom line:7843LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:01.521 SMA amantzio at dynacom line:7844LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7845LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7846DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7847LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7848LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7849DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7850LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7851LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7852DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7853LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7854LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7855DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7856LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7857LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:01.522 SMA amantzio at dynacom line:7858LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.567 SMA amantzio at dynacom line:7859LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.567 SMA amantzio at dynacom line:7860DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:42:01.567 SMA amantzio at dynacom line:7861LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:42:01.567 SMA amantzio at dynacom line:7862LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.567 SMA amantzio at dynacom line:7863DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.567 SMA amantzio at dynacom line:7864LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:42:01.567 SMA amantzio at dynacom line:7865LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.567 SMA amantzio at dynacom line:7866DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.567 SMA amantzio at dynacom line:7867LOG: statement: COMMIT
[60674] 2025-05-02 14:42:01.567 SMA amantzio at dynacom line:7868LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:42:01.567 SMA amantzio at dynacom line:7869LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7870LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7871DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7872LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7873LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7874DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7875LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7876LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7877DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7878LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7879LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7880DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7881LOG: statement:
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7882LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7883LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7884LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:01.578 SMA amantzio at dynacom line:7885DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7886LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7887LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7888DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7889LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7890LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7891DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7892LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7893LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7894DETAIL: portal: ""
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7895LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7896LOG: fetch from memory cache
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7897DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:42:01.579 SMA amantzio at dynacom line:7898LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7899LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7900DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7901LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7902LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7903DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7904LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7905LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7906DETAIL: portal: ""
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7907LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7908LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7909DETAIL: portal: ""
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7910LOG: statement:
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7911LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:42:05.988 SMA amantzio at dynacom line:7912LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7913LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7914DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7915LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7916LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7917DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7918LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7919LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7920DETAIL: portal: ""
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7921LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7922LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7923DETAIL: portal: ""
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7924LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7925LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:42:05.989 SMA amantzio at dynacom line:7926LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7927LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7928DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7929LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7930LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7931DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7932LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7933LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7934DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7935LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7936LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7937DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7938LOG: statement:
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7939LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7940LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7941LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7942DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7943LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7944LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7945DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7946LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7947LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7948DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7949LOG: statement: BEGIN
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7950LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7951LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:06.717 SMA amantzio at dynacom line:7952DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7953LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7954LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7955DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7956LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7957LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7958DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7959LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7960LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7961DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7962LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7963LOG: fetch from memory cache
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7964DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7965LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7966LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7967DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7968LOG: DB node id: 0 backend pid: 60726 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7969LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7970DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7971LOG: DB node id: 0 backend pid: 60726 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7972LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7973DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7974LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7975LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7976DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7977LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7978LOG: DB node id: 0 backend pid: 60726 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[60674] 2025-05-02 14:42:06.718 SMA amantzio at dynacom line:7979LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7980LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7981DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7982LOG: DB node id: 0 backend pid: 60726 statement: Parse: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7983LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7984DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7985LOG: DB node id: 0 backend pid: 60726 statement: Bind: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7986LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7987DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7988LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7989LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7990DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7991LOG: statement: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7992LOG: DB node id: 0 backend pid: 60726 statement: Execute: select currval('machdefs_defid_seq')
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7993LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7994LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7995DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767539,it2.machtypecount from items it2 where it2.defid=214767524"
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7996LOG: DB node id: 0 backend pid: 60726 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767539,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7997LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7998DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:7999LOG: DB node id: 0 backend pid: 60726 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767539,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:8000LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:8001DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:8002LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:8003LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:8004DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:8005LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767539,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:8006LOG: DB node id: 0 backend pid: 60726 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767539,it2.machtypecount from items it2 where it2.defid=214767524
[60674] 2025-05-02 14:42:06.719 SMA amantzio at dynacom line:8007LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:06.723 SMA amantzio at dynacom line:8008LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:06.723 SMA amantzio at dynacom line:8009DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:42:06.723 SMA amantzio at dynacom line:8010LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:42:06.723 SMA amantzio at dynacom line:8011LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:06.723 SMA amantzio at dynacom line:8012DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:06.723 SMA amantzio at dynacom line:8013LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:42:06.723 SMA amantzio at dynacom line:8014LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:06.723 SMA amantzio at dynacom line:8015DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.723 SMA amantzio at dynacom line:8016LOG: statement: COMMIT
[60674] 2025-05-02 14:42:06.723 SMA amantzio at dynacom line:8017LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:42:06.723 SMA amantzio at dynacom line:8018LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8019LOG: error while deleting item from shmem cache, item: 338 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8020LOG: error while deleting item from shmem cache, item: 340 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8021LOG: error while deleting item from shmem cache, item: 342 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8022LOG: error while deleting item from shmem cache, item: 344 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8023LOG: error while deleting item from shmem cache, item: 346 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8024LOG: error while deleting item from shmem cache, item: 348 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8025LOG: error while deleting item from shmem cache, item: 350 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8026LOG: error while deleting item from shmem cache, item: 352 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8027LOG: error while deleting item from shmem cache, item: 354 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8028LOG: error while deleting item from shmem cache, item: 356 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8029LOG: error while deleting item from shmem cache, item: 358 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8030LOG: error while deleting item from shmem cache, item: 360 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8031LOG: error while deleting item from shmem cache, item: 362 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8032LOG: error while deleting item from shmem cache, item: 364 was already deleted
[60674] 2025-05-02 14:42:06.727 SMA amantzio at dynacom line:8033LOG: error while deleting item from shmem cache, item: 366 was already deleted
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8034LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8035DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8036LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8037LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8038DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8039LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8040LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8041DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8042LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8043LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8044DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8045LOG: statement:
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8046LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:42:06.901 SMA amantzio at dynacom line:8047LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8048LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8049DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8050LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8051LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8052DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8053LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8054LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8055DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8056LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8057LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8058DETAIL: portal: ""
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8059LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8060LOG: fetch from memory cache
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8061DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:42:06.902 SMA amantzio at dynacom line:8062LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8063LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8064DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8065LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8066LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8067DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8068LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8069LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8070DETAIL: portal: ""
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8071LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8072LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8073DETAIL: portal: ""
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8074LOG: statement:
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8075LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8076LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8077LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8078DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8079LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8080LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8081DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8082LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8083LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8084DETAIL: portal: ""
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8085LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8086LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8087DETAIL: portal: ""
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8088LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8089LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[60674] 2025-05-02 14:42:07.892 SMA amantzio at dynacom line:8090LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8091LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8092DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8093LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8094LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8095DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8096LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8097LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8098DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8099LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8100LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8101DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8102LOG: statement:
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8103LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:42:08.528 SMA amantzio at dynacom line:8104LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8105LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8106DETAIL: statement: "", query: "BEGIN"
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8107LOG: DB node id: 0 backend pid: 60726 statement: Parse: BEGIN
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8108LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8109DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8110LOG: DB node id: 0 backend pid: 60726 statement: Bind: BEGIN
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8111LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8112DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8113LOG: statement: BEGIN
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8114LOG: DB node id: 0 backend pid: 60726 statement: Execute: BEGIN
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8115LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8116DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8117LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8118LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8119DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8120LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8121LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8122DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8123LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8124LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8125DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8126LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8127LOG: fetch from memory cache
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8128DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8129LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8130LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.529 SMA amantzio at dynacom line:8131DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8132LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8133LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8134DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8135LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8136LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8137DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8138LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8139LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8140DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8141LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8142LOG: fetch from memory cache
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8143DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8144LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8145LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8146DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8147LOG: DB node id: 0 backend pid: 60726 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8148LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8149DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8150LOG: DB node id: 0 backend pid: 60726 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8151LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8152DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8153LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8154LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8155DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8156LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8157LOG: DB node id: 0 backend pid: 60726 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8158LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8159LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.530 SMA amantzio at dynacom line:8160DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8161LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8162LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8163DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8164LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8165LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8166DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8167LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8168LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8169DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8170LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8171LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8172LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8173LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8174DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8175LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8176LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8177DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8178LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8179LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8180DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8181LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8182LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8183DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8184LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8185LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.531 SMA amantzio at dynacom line:8186LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8187LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8188DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8189LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8190LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8191DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8192LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8193LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8194DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8195LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8196LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8197DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8198LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8199LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.582 SMA amantzio at dynacom line:8200LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8201LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8202DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8203LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8204LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8205DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8206LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8207LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8208DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8209LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8210LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8211DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8212LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8213LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.583 SMA amantzio at dynacom line:8214LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8215LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8216DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8217LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8218LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8219DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8220LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8221LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8222DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8223LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8224LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8225DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8226LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8227LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.631 SMA amantzio at dynacom line:8228LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8229LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8230DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8231LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8232LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8233DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8234LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8235LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8236DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8237LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8238LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8239DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8240LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8241LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.632 SMA amantzio at dynacom line:8242LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.678 SMA amantzio at dynacom line:8243LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.678 SMA amantzio at dynacom line:8244DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:08.679 SMA amantzio at dynacom line:8245LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.679 SMA amantzio at dynacom line:8246LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.679 SMA amantzio at dynacom line:8247DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.679 SMA amantzio at dynacom line:8248LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.679 SMA amantzio at dynacom line:8249LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.679 SMA amantzio at dynacom line:8250DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.679 SMA amantzio at dynacom line:8251LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.679 SMA amantzio at dynacom line:8252LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.679 SMA amantzio at dynacom line:8253DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.679 SMA amantzio at dynacom line:8254LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.679 SMA amantzio at dynacom line:8255LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.679 SMA amantzio at dynacom line:8256LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8257LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8258DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8259LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8260LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8261DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8262LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8263LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8264DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8265LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8266LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8267DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8268LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8269LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.680 SMA amantzio at dynacom line:8270LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8271LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8272DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8273LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8274LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8275DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8276LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8277LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8278DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8279LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8280LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8281DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8282LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8283LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.729 SMA amantzio at dynacom line:8284LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8285LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8286DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8287LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8288LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8289DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8290LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8291LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8292DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8293LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8294LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8295DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8296LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8297LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.730 SMA amantzio at dynacom line:8298LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.776 SMA amantzio at dynacom line:8299LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.776 SMA amantzio at dynacom line:8300DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:08.777 SMA amantzio at dynacom line:8301LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.777 SMA amantzio at dynacom line:8302LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.777 SMA amantzio at dynacom line:8303DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.777 SMA amantzio at dynacom line:8304LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.777 SMA amantzio at dynacom line:8305LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.777 SMA amantzio at dynacom line:8306DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.777 SMA amantzio at dynacom line:8307LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.777 SMA amantzio at dynacom line:8308LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.777 SMA amantzio at dynacom line:8309DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.777 SMA amantzio at dynacom line:8310LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.777 SMA amantzio at dynacom line:8311LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.777 SMA amantzio at dynacom line:8312LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8313LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8314DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8315LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8316LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8317DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8318LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8319LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8320DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8321LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8322LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8323DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8324LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8325LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.778 SMA amantzio at dynacom line:8326LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.827 SMA amantzio at dynacom line:8327LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.827 SMA amantzio at dynacom line:8328DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:08.828 SMA amantzio at dynacom line:8329LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.828 SMA amantzio at dynacom line:8330LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.828 SMA amantzio at dynacom line:8331DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.828 SMA amantzio at dynacom line:8332LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.828 SMA amantzio at dynacom line:8333LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.828 SMA amantzio at dynacom line:8334DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.828 SMA amantzio at dynacom line:8335LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.828 SMA amantzio at dynacom line:8336LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.828 SMA amantzio at dynacom line:8337DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.828 SMA amantzio at dynacom line:8338LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.828 SMA amantzio at dynacom line:8339LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.828 SMA amantzio at dynacom line:8340LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8341LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8342DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8343LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8344LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8345DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8346LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8347LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8348DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8349LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8350LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8351DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8352LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8353LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.829 SMA amantzio at dynacom line:8354LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8355LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8356DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8357LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8358LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8359DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8360LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8361LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8362DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8363LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8364LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8365DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8366LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8367LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.882 SMA amantzio at dynacom line:8368LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8369LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8370DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8371LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8372LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8373DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8374LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8375LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8376DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8377LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8378LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8379DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8380LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8381LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.883 SMA amantzio at dynacom line:8382LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8383LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8384DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8385LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8386LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8387DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8388LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8389LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8390DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8391LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8392LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8393DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8394LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8395LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.930 SMA amantzio at dynacom line:8396LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8397LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8398DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8399LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8400LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8401DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8402LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8403LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8404DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8405LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8406LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8407DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8408LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8409LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.931 SMA amantzio at dynacom line:8410LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8411LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8412DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8413LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8414LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8415DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8416LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8417LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8418DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8419LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8420LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8421DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8422LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8423LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:08.978 SMA amantzio at dynacom line:8424LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8425LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8426DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8427LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8428LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8429DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8430LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8431LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8432DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8433LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8434LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8435DETAIL: portal: ""
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8436LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8437LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:08.979 SMA amantzio at dynacom line:8438LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8439LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8440DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8441LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8442LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8443DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8444LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8445LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8446DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8447LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8448LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8449DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8450LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8451LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.023 SMA amantzio at dynacom line:8452LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8453LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8454DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8455LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8456LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8457DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8458LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8459LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8460DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8461LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8462LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8463DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8464LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8465LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.024 SMA amantzio at dynacom line:8466LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.066 SMA amantzio at dynacom line:8467LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.066 SMA amantzio at dynacom line:8468DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:09.067 SMA amantzio at dynacom line:8469LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.067 SMA amantzio at dynacom line:8470LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.067 SMA amantzio at dynacom line:8471DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.067 SMA amantzio at dynacom line:8472LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.067 SMA amantzio at dynacom line:8473LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.067 SMA amantzio at dynacom line:8474DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.067 SMA amantzio at dynacom line:8475LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.067 SMA amantzio at dynacom line:8476LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.067 SMA amantzio at dynacom line:8477DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.067 SMA amantzio at dynacom line:8478LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.067 SMA amantzio at dynacom line:8479LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.067 SMA amantzio at dynacom line:8480LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8481LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8482DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8483LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8484LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8485DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8486LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8487LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8488DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8489LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8490LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8491DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8492LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8493LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.068 SMA amantzio at dynacom line:8494LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8495LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8496DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8497LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8498LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8499DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8500LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8501LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8502DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8503LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8504LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8505DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8506LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8507LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.113 SMA amantzio at dynacom line:8508LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8509LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8510DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8511LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8512LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8513DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8514LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8515LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8516DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8517LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8518LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8519DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8520LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8521LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.114 SMA amantzio at dynacom line:8522LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8523LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8524DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8525LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8526LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8527DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8528LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8529LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8530DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8531LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8532LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8533DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8534LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8535LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.162 SMA amantzio at dynacom line:8536LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8537LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8538DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8539LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8540LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8541DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8542LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8543LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8544DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8545LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8546LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8547DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8548LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8549LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.163 SMA amantzio at dynacom line:8550LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8551LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8552DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8553LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8554LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8555DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8556LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8557LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8558DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8559LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8560LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8561DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8562LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8563LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.210 SMA amantzio at dynacom line:8564LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8565LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8566DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8567LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8568LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8569DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8570LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8571LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8572DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8573LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8574LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8575DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8576LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8577LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.211 SMA amantzio at dynacom line:8578LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.261 SMA amantzio at dynacom line:8579LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.261 SMA amantzio at dynacom line:8580DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[60674] 2025-05-02 14:42:09.262 SMA amantzio at dynacom line:8581LOG: DB node id: 0 backend pid: 60726 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.262 SMA amantzio at dynacom line:8582LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.262 SMA amantzio at dynacom line:8583DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.262 SMA amantzio at dynacom line:8584LOG: DB node id: 0 backend pid: 60726 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.262 SMA amantzio at dynacom line:8585LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.262 SMA amantzio at dynacom line:8586DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.262 SMA amantzio at dynacom line:8587LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.262 SMA amantzio at dynacom line:8588LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.262 SMA amantzio at dynacom line:8589DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.262 SMA amantzio at dynacom line:8590LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.262 SMA amantzio at dynacom line:8591LOG: DB node id: 0 backend pid: 60726 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[60674] 2025-05-02 14:42:09.262 SMA amantzio at dynacom line:8592LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8593LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8594DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8595LOG: DB node id: 0 backend pid: 60726 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8596LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8597DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8598LOG: DB node id: 0 backend pid: 60726 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8599LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8600DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8601LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8602LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8603DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8604LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8605LOG: DB node id: 0 backend pid: 60726 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[60674] 2025-05-02 14:42:09.263 SMA amantzio at dynacom line:8606LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.312 SMA amantzio at dynacom line:8607LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.312 SMA amantzio at dynacom line:8608DETAIL: statement: "", query: "COMMIT"
[60674] 2025-05-02 14:42:09.312 SMA amantzio at dynacom line:8609LOG: DB node id: 0 backend pid: 60726 statement: Parse: COMMIT
[60674] 2025-05-02 14:42:09.312 SMA amantzio at dynacom line:8610LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.312 SMA amantzio at dynacom line:8611DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.312 SMA amantzio at dynacom line:8612LOG: DB node id: 0 backend pid: 60726 statement: Bind: COMMIT
[60674] 2025-05-02 14:42:09.312 SMA amantzio at dynacom line:8613LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.312 SMA amantzio at dynacom line:8614DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.312 SMA amantzio at dynacom line:8615LOG: statement: COMMIT
[60674] 2025-05-02 14:42:09.312 SMA amantzio at dynacom line:8616LOG: DB node id: 0 backend pid: 60726 statement: Execute: COMMIT
[60674] 2025-05-02 14:42:09.312 SMA amantzio at dynacom line:8617LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8618LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8619DETAIL: statement: "", query: ""
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8620LOG: DB node id: 0 backend pid: 60726 statement: Parse:
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8621LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8622DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8623LOG: DB node id: 0 backend pid: 60726 statement: Bind:
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8624LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8625DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8626LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8627LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8628DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8629LOG: statement:
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8630LOG: DB node id: 0 backend pid: 60726 statement: Execute:
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8631LOG: Sync message from frontend.
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8632LOG: Parse message from frontend.
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8633DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8634LOG: DB node id: 0 backend pid: 60726 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8635LOG: Bind message from frontend.
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8636DETAIL: portal: "", statement: ""
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8637LOG: DB node id: 0 backend pid: 60726 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8638LOG: Describe message from frontend.
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8639DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8640LOG: DB node id: 0 backend pid: 60726 statement: D message
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8641LOG: Execute message from frontend.
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8642DETAIL: portal: ""
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8643LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8644LOG: fetch from memory cache
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8645DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[60674] 2025-05-02 14:42:09.321 SMA amantzio at dynacom line:8646LOG: Sync message from frontend.
-------------- next part --------------
127.0.0.1(42277) [59648] 6814a7a5.e900 2025-05-02 14:09:29.358 EEST qSMAdynacom imazarakis at dynacom line:64 LOG: disconnection: session time: 0:01:07.777 user=imazarakis database=dynacom host=127.0.0.1 port=42277
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.264 EEST [unknown] [unknown]@[unknown] line:1 LOG: connection received: host=127.0.0.1 port=15112
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.264 EEST [unknown] amantzio at dynacom line:2 LOG: connection authenticated: user="amantzio" method=trust (/usr/local/var/lib/pgsql/data/pg_hba.conf:78)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.264 EEST [unknown] amantzio at dynacom line:3 LOG: connection authorized: user=amantzio database=dynacom
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.283 EEST [unknown] amantzio at dynacom line:4 LOG: duration: 0.182 ms parse pgpool59728: SELECT pg_catalog.version()
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.283 EEST [unknown] amantzio at dynacom line:5 LOG: duration: 0.068 ms bind pgpool59728/pgpool59728: SELECT pg_catalog.version()
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.284 EEST [unknown] amantzio at dynacom line:6 LOG: execute pgpool59728/pgpool59728: SELECT pg_catalog.version()
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.284 EEST [unknown] amantzio at dynacom line:7 LOG: duration: 0.021 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.284 EEST [unknown] amantzio at dynacom line:8 LOG: duration: 0.013 ms parse <unnamed>: SET extra_float_digits = 3
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.284 EEST [unknown] amantzio at dynacom line:9 LOG: duration: 0.003 ms bind <unnamed>: SET extra_float_digits = 3
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.284 EEST [unknown] amantzio at dynacom line:10 LOG: execute <unnamed>: SET extra_float_digits = 3
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.284 EEST [unknown] amantzio at dynacom line:11 LOG: duration: 0.017 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.284 EEST [unknown] amantzio at dynacom line:12 LOG: duration: 0.010 ms parse <unnamed>: SET application_name = 'PostgreSQL JDBC Driver'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.284 EEST [unknown] amantzio at dynacom line:13 LOG: duration: 0.002 ms bind <unnamed>: SET application_name = 'PostgreSQL JDBC Driver'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.284 EEST [unknown] amantzio at dynacom line:14 LOG: execute <unnamed>: SET application_name = 'PostgreSQL JDBC Driver'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.284 EEST PostgreSQL JDBC Driver amantzio at dynacom line:15 LOG: duration: 0.011 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.300 EEST PostgreSQL JDBC Driver amantzio at dynacom line:16 LOG: duration: 0.034 ms parse <unnamed>: SHOW TRANSACTION ISOLATION LEVEL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.300 EEST PostgreSQL JDBC Driver amantzio at dynacom line:17 LOG: duration: 0.007 ms bind <unnamed>: SHOW TRANSACTION ISOLATION LEVEL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.300 EEST PostgreSQL JDBC Driver amantzio at dynacom line:18 LOG: execute <unnamed>: SHOW TRANSACTION ISOLATION LEVEL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.300 EEST PostgreSQL JDBC Driver amantzio at dynacom line:19 LOG: duration: 0.032 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.309 EEST PostgreSQL JDBC Driver amantzio at dynacom line:20 LOG: duration: 0.019 ms parse <unnamed>: SET application_name to 'SMA '
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.309 EEST PostgreSQL JDBC Driver amantzio at dynacom line:21 LOG: duration: 0.003 ms bind <unnamed>: SET application_name to 'SMA '
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.309 EEST PostgreSQL JDBC Driver amantzio at dynacom line:22 LOG: execute <unnamed>: SET application_name to 'SMA '
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.309 EEST SMA amantzio at dynacom line:23 LOG: duration: 0.018 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.310 EEST SMA amantzio at dynacom line:24 LOG: duration: 0.318 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.311 EEST SMA amantzio at dynacom line:25 LOG: duration: 0.785 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.311 EEST SMA amantzio at dynacom line:26 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.311 EEST SMA amantzio at dynacom line:27 LOG: duration: 0.022 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.311 EEST SMA amantzio at dynacom line:28 LOG: duration: 0.033 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.311 EEST SMA amantzio at dynacom line:29 LOG: duration: 0.113 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.311 EEST SMA amantzio at dynacom line:30 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.311 EEST SMA amantzio at dynacom line:31 LOG: duration: 0.014 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.311 EEST SMA amantzio at dynacom line:32 LOG: duration: 0.069 ms parse <unnamed>: select set_search_path('bdynacom,epaybdynacom,epay')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.312 EEST SMA amantzio at dynacom line:33 LOG: duration: 0.419 ms bind <unnamed>: select set_search_path('bdynacom,epaybdynacom,epay')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.312 EEST SMA amantzio at dynacom line:34 LOG: execute <unnamed>: select set_search_path('bdynacom,epaybdynacom,epay')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.312 EEST SMA amantzio at dynacom line:35 LOG: duration: 0.560 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.330 EEST SMA amantzio at dynacom line:36 LOG: duration: 0.153 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"smanews"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.330 EEST SMA amantzio at dynacom line:37 LOG: duration: 0.028 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"smanews"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.330 EEST SMA amantzio at dynacom line:38 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"smanews"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.330 EEST SMA amantzio at dynacom line:39 LOG: duration: 0.036 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.330 EEST SMA amantzio at dynacom line:40 LOG: duration: 0.065 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.330 EEST SMA amantzio at dynacom line:41 LOG: duration: 0.175 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.330 EEST SMA amantzio at dynacom line:42 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.330 EEST SMA amantzio at dynacom line:43 LOG: duration: 0.039 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.331 EEST SMA amantzio at dynacom line:44 LOG: duration: 0.246 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.331 EEST SMA amantzio at dynacom line:45 LOG: duration: 0.257 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.331 EEST SMA amantzio at dynacom line:46 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.331 EEST SMA amantzio at dynacom line:47 LOG: duration: 0.017 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.331 EEST SMA amantzio at dynacom line:48 LOG: duration: 0.028 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'smanews' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.331 EEST SMA amantzio at dynacom line:49 LOG: duration: 0.189 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'smanews' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.331 EEST SMA amantzio at dynacom line:50 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'smanews' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.332 EEST SMA amantzio at dynacom line:51 LOG: duration: 0.066 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.332 EEST SMA amantzio at dynacom line:52 LOG: duration: 0.027 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.332 EEST SMA amantzio at dynacom line:53 LOG: duration: 0.066 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.332 EEST SMA amantzio at dynacom line:54 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.332 EEST SMA amantzio at dynacom line:55 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.332 EEST SMA amantzio at dynacom line:56 LOG: duration: 0.038 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.332 EEST SMA amantzio at dynacom line:57 LOG: duration: 0.118 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.332 EEST SMA amantzio at dynacom line:58 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.332 EEST SMA amantzio at dynacom line:59 LOG: duration: 0.018 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.332 EEST SMA amantzio at dynacom line:60 LOG: duration: 0.279 ms parse <unnamed>: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.333 EEST SMA amantzio at dynacom line:61 LOG: duration: 0.334 ms bind <unnamed>: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.333 EEST SMA amantzio at dynacom line:62 LOG: execute <unnamed>: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:33.333 EEST SMA amantzio at dynacom line:63 LOG: duration: 0.125 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.903 EEST SMA amantzio at dynacom line:64 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.903 EEST SMA amantzio at dynacom line:65 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:66 LOG: duration: 0.057 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff_works_in"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:67 LOG: duration: 0.046 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff_works_in"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:68 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff_works_in"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:69 LOG: duration: 0.055 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:70 LOG: duration: 0.017 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:71 LOG: duration: 0.009 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:72 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:73 LOG: duration: 0.019 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:74 LOG: duration: 0.014 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"company_dept_instance"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:75 LOG: duration: 0.008 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"company_dept_instance"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:76 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"company_dept_instance"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:77 LOG: duration: 0.021 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:78 LOG: duration: 0.046 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff_works_in' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:79 LOG: duration: 0.208 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff_works_in' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:80 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff_works_in' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:81 LOG: duration: 0.051 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.905 EEST SMA amantzio at dynacom line:82 LOG: duration: 0.027 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:83 LOG: duration: 0.119 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:84 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:85 LOG: duration: 0.050 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:86 LOG: duration: 0.026 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_dept_instance' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:87 LOG: duration: 0.113 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_dept_instance' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:88 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_dept_instance' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:89 LOG: duration: 0.041 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:90 LOG: duration: 0.028 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:91 LOG: duration: 0.083 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:92 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:93 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:94 LOG: duration: 0.035 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:95 LOG: duration: 0.081 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:96 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:97 LOG: duration: 0.011 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:98 LOG: duration: 0.032 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:99 LOG: duration: 0.087 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:100 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.906 EEST SMA amantzio at dynacom line:101 LOG: duration: 0.012 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:102 LOG: duration: 0.025 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:103 LOG: duration: 0.068 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:104 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:105 LOG: duration: 0.008 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:106 LOG: duration: 0.022 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:107 LOG: duration: 0.037 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:108 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:109 LOG: duration: 0.008 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:110 LOG: duration: 0.021 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:111 LOG: duration: 0.036 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:112 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:113 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:114 LOG: duration: 0.026 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:115 LOG: duration: 0.059 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:116 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:117 LOG: duration: 0.008 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:118 LOG: duration: 0.031 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:119 LOG: duration: 0.042 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:120 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:121 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.907 EEST SMA amantzio at dynacom line:122 LOG: duration: 0.031 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:123 LOG: duration: 0.040 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:124 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:125 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:126 LOG: duration: 0.031 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:127 LOG: duration: 0.048 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:128 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:129 LOG: duration: 0.012 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:130 LOG: duration: 0.028 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:131 LOG: duration: 0.042 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:132 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:133 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:134 LOG: duration: 0.030 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:135 LOG: duration: 0.047 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:136 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:137 LOG: duration: 0.011 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.908 EEST SMA amantzio at dynacom line:138 LOG: duration: 0.289 ms parse <unnamed>: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.909 EEST SMA amantzio at dynacom line:139 LOG: duration: 1.036 ms bind <unnamed>: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.909 EEST SMA amantzio at dynacom line:140 DETAIL: Parameters: $1 = 'Achilleas Mantzios'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.909 EEST SMA amantzio at dynacom line:141 LOG: execute <unnamed>: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.909 EEST SMA amantzio at dynacom line:142 DETAIL: Parameters: $1 = 'Achilleas Mantzios'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.909 EEST SMA amantzio at dynacom line:143 LOG: duration: 0.082 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.910 EEST SMA amantzio at dynacom line:144 LOG: duration: 0.028 ms parse pgpool59728: SELECT oid FROM pg_catalog.pg_database WHERE datname = 'dynacom'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.910 EEST SMA amantzio at dynacom line:145 LOG: duration: 0.075 ms bind pgpool59728/pgpool59728: SELECT oid FROM pg_catalog.pg_database WHERE datname = 'dynacom'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.910 EEST SMA amantzio at dynacom line:146 LOG: execute pgpool59728/pgpool59728: SELECT oid FROM pg_catalog.pg_database WHERE datname = 'dynacom'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:34.910 EEST SMA amantzio at dynacom line:147 LOG: duration: 0.012 ms
127.0.0.1(58276) [59853] 6814a7ee.e9cd 2025-05-02 14:09:34.921 EEST [unknown] [unknown]@[unknown] line:1 LOG: connection received: host=127.0.0.1 port=58276
127.0.0.1(58276) [59853] 6814a7ee.e9cd 2025-05-02 14:09:34.924 EEST [unknown] periodic at dynacom line:2 LOG: connection authenticated: user="periodic" method=trust (/usr/local/var/lib/pgsql/data/pg_hba.conf:78)
127.0.0.1(58276) [59853] 6814a7ee.e9cd 2025-05-02 14:09:34.924 EEST [unknown] periodic at dynacom line:3 LOG: connection authorized: user=periodic database=dynacom SSL enabled (protocol=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384, bits=256)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.171 EEST SMA amantzio at dynacom line:148 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.171 EEST SMA amantzio at dynacom line:149 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:150 LOG: duration: 0.080 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"machdefs"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:151 LOG: duration: 0.044 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"machdefs"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:152 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"machdefs"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:153 LOG: duration: 0.091 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:154 LOG: duration: 0.021 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"items"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:155 LOG: duration: 0.012 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"items"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:156 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"items"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:157 LOG: duration: 0.053 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:158 LOG: duration: 0.018 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"vessels"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:159 LOG: duration: 0.012 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"vessels"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:160 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"vessels"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:161 LOG: duration: 0.043 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:162 LOG: duration: 0.019 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"machtypes"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:163 LOG: duration: 0.012 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"machtypes"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:164 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"machtypes"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:165 LOG: duration: 0.034 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:166 LOG: duration: 0.017 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"machtypesclasses"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:167 LOG: duration: 0.014 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"machtypesclasses"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:168 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"machtypesclasses"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:169 LOG: duration: 0.031 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:170 LOG: duration: 0.022 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"makers"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:171 LOG: duration: 0.012 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"makers"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.172 EEST SMA amantzio at dynacom line:172 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"makers"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:173 LOG: duration: 0.039 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:174 LOG: duration: 0.017 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"licensees"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:175 LOG: duration: 0.010 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"licensees"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:176 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"licensees"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:177 LOG: duration: 0.032 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:178 LOG: duration: 0.024 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"machclasses"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:179 LOG: duration: 0.013 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"machclasses"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:180 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"machclasses"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:181 LOG: duration: 0.043 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:182 LOG: duration: 0.070 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:183 LOG: duration: 0.279 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:184 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.173 EEST SMA amantzio at dynacom line:185 LOG: duration: 0.043 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.174 EEST SMA amantzio at dynacom line:186 LOG: duration: 0.063 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.174 EEST SMA amantzio at dynacom line:187 LOG: duration: 0.414 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.174 EEST SMA amantzio at dynacom line:188 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.174 EEST SMA amantzio at dynacom line:189 LOG: duration: 0.020 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.174 EEST SMA amantzio at dynacom line:190 LOG: duration: 0.044 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.174 EEST SMA amantzio at dynacom line:191 LOG: duration: 0.201 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.174 EEST SMA amantzio at dynacom line:192 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.174 EEST SMA amantzio at dynacom line:193 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:194 LOG: duration: 0.037 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:195 LOG: duration: 0.116 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:196 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:197 LOG: duration: 0.027 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:198 LOG: duration: 0.045 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:199 LOG: duration: 0.180 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:200 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:201 LOG: duration: 0.015 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:202 LOG: duration: 0.045 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:203 LOG: duration: 0.182 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:204 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:205 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.175 EEST SMA amantzio at dynacom line:206 LOG: duration: 0.037 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machdefs' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.176 EEST SMA amantzio at dynacom line:207 LOG: duration: 0.173 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machdefs' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.176 EEST SMA amantzio at dynacom line:208 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machdefs' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.176 EEST SMA amantzio at dynacom line:209 LOG: duration: 0.060 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.176 EEST SMA amantzio at dynacom line:210 LOG: duration: 0.035 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'items' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.176 EEST SMA amantzio at dynacom line:211 LOG: duration: 0.144 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'items' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.176 EEST SMA amantzio at dynacom line:212 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'items' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.176 EEST SMA amantzio at dynacom line:213 LOG: duration: 0.046 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.176 EEST SMA amantzio at dynacom line:214 LOG: duration: 0.031 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'vessels' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.176 EEST SMA amantzio at dynacom line:215 LOG: duration: 0.140 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'vessels' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.176 EEST SMA amantzio at dynacom line:216 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'vessels' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.176 EEST SMA amantzio at dynacom line:217 LOG: duration: 0.051 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.176 EEST SMA amantzio at dynacom line:218 LOG: duration: 0.040 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypes' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.177 EEST SMA amantzio at dynacom line:219 LOG: duration: 0.179 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypes' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.177 EEST SMA amantzio at dynacom line:220 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypes' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.177 EEST SMA amantzio at dynacom line:221 LOG: duration: 0.063 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.177 EEST SMA amantzio at dynacom line:222 LOG: duration: 0.040 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypesclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.177 EEST SMA amantzio at dynacom line:223 LOG: duration: 0.173 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypesclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.177 EEST SMA amantzio at dynacom line:224 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypesclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.177 EEST SMA amantzio at dynacom line:225 LOG: duration: 0.059 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.177 EEST SMA amantzio at dynacom line:226 LOG: duration: 0.035 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'makers' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.177 EEST SMA amantzio at dynacom line:227 LOG: duration: 0.164 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'makers' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.177 EEST SMA amantzio at dynacom line:228 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'makers' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.177 EEST SMA amantzio at dynacom line:229 LOG: duration: 0.059 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.177 EEST SMA amantzio at dynacom line:230 LOG: duration: 0.034 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'licensees' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:231 LOG: duration: 0.157 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'licensees' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:232 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'licensees' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:233 LOG: duration: 0.058 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:234 LOG: duration: 0.034 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:235 LOG: duration: 0.157 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:236 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:237 LOG: duration: 0.055 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:238 LOG: duration: 0.040 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:239 LOG: duration: 0.116 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:240 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:241 LOG: duration: 0.029 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:242 LOG: duration: 0.043 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:243 LOG: duration: 0.125 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.178 EEST SMA amantzio at dynacom line:244 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:245 LOG: duration: 0.019 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:246 LOG: duration: 0.041 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:247 LOG: duration: 0.120 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:248 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:249 LOG: duration: 0.031 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:250 LOG: duration: 0.038 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:251 LOG: duration: 0.120 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:252 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:253 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:254 LOG: duration: 0.036 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:255 LOG: duration: 0.108 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:256 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:257 LOG: duration: 0.015 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:258 LOG: duration: 0.040 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:259 LOG: duration: 0.110 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:260 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.179 EEST SMA amantzio at dynacom line:261 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:262 LOG: duration: 0.038 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:263 LOG: duration: 0.106 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:264 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:265 LOG: duration: 0.015 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:266 LOG: duration: 0.040 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:267 LOG: duration: 0.111 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:268 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:269 LOG: duration: 0.019 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:270 LOG: duration: 0.030 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:271 LOG: duration: 0.055 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:272 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:273 LOG: duration: 0.015 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:274 LOG: duration: 0.030 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:275 LOG: duration: 0.056 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:276 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:277 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:278 LOG: duration: 0.030 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:279 LOG: duration: 0.051 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:280 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:281 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.180 EEST SMA amantzio at dynacom line:282 LOG: duration: 0.029 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:283 LOG: duration: 0.053 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:284 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:285 LOG: duration: 0.014 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:286 LOG: duration: 0.035 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:287 LOG: duration: 0.058 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:288 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:289 LOG: duration: 0.014 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:290 LOG: duration: 0.035 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:291 LOG: duration: 0.060 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:292 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:293 LOG: duration: 0.015 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:294 LOG: duration: 0.032 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:295 LOG: duration: 0.053 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:296 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:297 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:298 LOG: duration: 0.027 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:299 LOG: duration: 0.049 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:300 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:301 LOG: duration: 0.012 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:302 LOG: duration: 0.029 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:303 LOG: duration: 0.053 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:304 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.181 EEST SMA amantzio at dynacom line:305 LOG: duration: 0.012 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:306 LOG: duration: 0.029 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:307 LOG: duration: 0.050 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:308 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:309 LOG: duration: 0.012 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:310 LOG: duration: 0.035 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:311 LOG: duration: 0.058 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:312 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:313 LOG: duration: 0.017 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:314 LOG: duration: 0.030 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:315 LOG: duration: 0.052 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:316 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:317 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:318 LOG: duration: 0.029 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:319 LOG: duration: 0.052 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:320 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:321 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:322 LOG: duration: 0.029 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:323 LOG: duration: 0.052 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:324 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:325 LOG: duration: 0.012 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:326 LOG: duration: 0.029 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:327 LOG: duration: 0.053 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:328 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:329 LOG: duration: 0.014 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.182 EEST SMA amantzio at dynacom line:330 LOG: duration: 0.031 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.183 EEST SMA amantzio at dynacom line:331 LOG: duration: 0.053 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.183 EEST SMA amantzio at dynacom line:332 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.183 EEST SMA amantzio at dynacom line:333 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.183 EEST SMA amantzio at dynacom line:334 LOG: duration: 0.043 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.183 EEST SMA amantzio at dynacom line:335 LOG: duration: 0.151 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.183 EEST SMA amantzio at dynacom line:336 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.183 EEST SMA amantzio at dynacom line:337 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.183 EEST SMA amantzio at dynacom line:338 LOG: duration: 0.034 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.183 EEST SMA amantzio at dynacom line:339 LOG: duration: 0.118 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.183 EEST SMA amantzio at dynacom line:340 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.183 EEST SMA amantzio at dynacom line:341 LOG: duration: 0.014 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.184 EEST SMA amantzio at dynacom line:342 LOG: duration: 1.106 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.219 EEST SMA amantzio at dynacom line:343 LOG: duration: 34.818 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.219 EEST SMA amantzio at dynacom line:344 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:35.970 EEST SMA amantzio at dynacom line:345 LOG: duration: 751.218 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.215 EEST SMA amantzio at dynacom line:346 LOG: duration: 0.031 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.215 EEST SMA amantzio at dynacom line:347 LOG: duration: 0.009 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.218 EEST SMA amantzio at dynacom line:348 LOG: duration: 0.022 ms parse <unnamed>: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.218 EEST SMA amantzio at dynacom line:349 LOG: duration: 0.007 ms bind <unnamed>: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.218 EEST SMA amantzio at dynacom line:350 LOG: execute <unnamed>: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.218 EEST SMA amantzio at dynacom line:351 LOG: duration: 0.038 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.218 EEST SMA amantzio at dynacom line:352 LOG: duration: 0.120 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.218 EEST SMA amantzio at dynacom line:353 LOG: duration: 0.163 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.218 EEST SMA amantzio at dynacom line:354 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.218 EEST SMA amantzio at dynacom line:355 LOG: duration: 0.042 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.219 EEST SMA amantzio at dynacom line:356 LOG: duration: 0.044 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.219 EEST SMA amantzio at dynacom line:357 LOG: duration: 0.070 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.219 EEST SMA amantzio at dynacom line:358 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.219 EEST SMA amantzio at dynacom line:359 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.219 EEST SMA amantzio at dynacom line:360 LOG: duration: 0.037 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.219 EEST SMA amantzio at dynacom line:361 LOG: duration: 0.054 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.219 EEST SMA amantzio at dynacom line:362 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.219 EEST SMA amantzio at dynacom line:363 LOG: duration: 0.032 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.219 EEST SMA amantzio at dynacom line:364 LOG: duration: 0.041 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.219 EEST SMA amantzio at dynacom line:365 LOG: duration: 0.016 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.219 EEST SMA amantzio at dynacom line:366 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.219 EEST SMA amantzio at dynacom line:367 LOG: duration: 0.020 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.220 EEST SMA amantzio at dynacom line:368 LOG: duration: 0.046 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.220 EEST SMA amantzio at dynacom line:369 LOG: duration: 0.409 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.220 EEST SMA amantzio at dynacom line:370 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.220 EEST SMA amantzio at dynacom line:371 LOG: execute <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.220 EEST SMA amantzio at dynacom line:372 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.220 EEST SMA amantzio at dynacom line:373 LOG: duration: 0.026 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:374 LOG: duration: 0.100 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:375 LOG: duration: 0.082 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:376 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:377 LOG: duration: 0.020 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:378 LOG: duration: 0.038 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:379 LOG: duration: 0.064 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:380 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:381 LOG: duration: 0.015 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:382 LOG: duration: 0.018 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:383 LOG: duration: 0.012 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:384 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:385 LOG: duration: 0.007 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.221 EEST SMA amantzio at dynacom line:386 LOG: duration: 0.056 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.222 EEST SMA amantzio at dynacom line:387 LOG: duration: 0.534 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.222 EEST SMA amantzio at dynacom line:388 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.222 EEST SMA amantzio at dynacom line:389 LOG: duration: 0.032 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.223 EEST SMA amantzio at dynacom line:390 LOG: duration: 0.053 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.223 EEST SMA amantzio at dynacom line:391 LOG: duration: 0.089 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.223 EEST SMA amantzio at dynacom line:392 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.223 EEST SMA amantzio at dynacom line:393 LOG: duration: 0.020 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.223 EEST SMA amantzio at dynacom line:394 LOG: duration: 0.038 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.223 EEST SMA amantzio at dynacom line:395 LOG: duration: 0.188 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.224 EEST SMA amantzio at dynacom line:396 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.224 EEST SMA amantzio at dynacom line:397 LOG: duration: 0.023 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.226 EEST SMA amantzio at dynacom line:398 LOG: duration: 0.056 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.226 EEST SMA amantzio at dynacom line:399 LOG: duration: 0.080 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.226 EEST SMA amantzio at dynacom line:400 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.226 EEST SMA amantzio at dynacom line:401 LOG: duration: 0.018 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.226 EEST SMA amantzio at dynacom line:402 LOG: duration: 0.123 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.227 EEST SMA amantzio at dynacom line:403 LOG: duration: 0.960 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.227 EEST SMA amantzio at dynacom line:404 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.227 EEST SMA amantzio at dynacom line:405 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.227 EEST SMA amantzio at dynacom line:406 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.227 EEST SMA amantzio at dynacom line:407 LOG: duration: 0.050 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.228 EEST SMA amantzio at dynacom line:408 LOG: duration: 0.056 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.228 EEST SMA amantzio at dynacom line:409 LOG: duration: 0.121 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.228 EEST SMA amantzio at dynacom line:410 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.228 EEST SMA amantzio at dynacom line:411 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.228 EEST SMA amantzio at dynacom line:412 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.279 EEST SMA amantzio at dynacom line:413 LOG: duration: 50.688 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.281 EEST SMA amantzio at dynacom line:414 LOG: duration: 0.034 ms parse S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.281 EEST SMA amantzio at dynacom line:415 LOG: duration: 0.037 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.281 EEST SMA amantzio at dynacom line:416 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.281 EEST SMA amantzio at dynacom line:417 LOG: duration: 0.082 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.718 EEST SMA amantzio at dynacom line:418 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.718 EEST SMA amantzio at dynacom line:419 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.727 EEST SMA amantzio at dynacom line:420 LOG: duration: 0.026 ms parse <unnamed>: SHOW application_name
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.727 EEST SMA amantzio at dynacom line:421 LOG: duration: 0.005 ms bind <unnamed>: SHOW application_name
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.727 EEST SMA amantzio at dynacom line:422 LOG: execute <unnamed>: SHOW application_name
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.727 EEST SMA amantzio at dynacom line:423 LOG: duration: 0.021 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.748 EEST SMA amantzio at dynacom line:424 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.748 EEST SMA amantzio at dynacom line:425 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.761 EEST SMA amantzio at dynacom line:426 LOG: duration: 0.069 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"system_parameters"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.761 EEST SMA amantzio at dynacom line:427 LOG: duration: 0.030 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"system_parameters"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.761 EEST SMA amantzio at dynacom line:428 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"system_parameters"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.761 EEST SMA amantzio at dynacom line:429 LOG: duration: 0.061 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.761 EEST SMA amantzio at dynacom line:430 LOG: duration: 0.048 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'system_parameters' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.761 EEST SMA amantzio at dynacom line:431 LOG: duration: 0.209 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'system_parameters' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.761 EEST SMA amantzio at dynacom line:432 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'system_parameters' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:433 LOG: duration: 0.054 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:434 LOG: duration: 0.034 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:435 LOG: duration: 0.091 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:436 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:437 LOG: duration: 0.018 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:438 LOG: duration: 0.027 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:439 LOG: duration: 0.045 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:440 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:441 LOG: duration: 0.011 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:442 LOG: duration: 0.029 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:443 LOG: duration: 0.046 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:444 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:445 LOG: duration: 0.010 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:446 LOG: duration: 0.024 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:447 LOG: duration: 0.042 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:448 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:449 LOG: duration: 0.010 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:450 LOG: duration: 0.046 ms parse <unnamed>: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:451 LOG: duration: 0.086 ms bind <unnamed>: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:452 LOG: execute <unnamed>: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.762 EEST SMA amantzio at dynacom line:453 LOG: duration: 0.028 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.988 EEST SMA amantzio at dynacom line:454 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.988 EEST SMA amantzio at dynacom line:455 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.989 EEST SMA amantzio at dynacom line:456 LOG: duration: 0.019 ms parse <unnamed>: show application_name
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.989 EEST SMA amantzio at dynacom line:457 LOG: duration: 0.005 ms bind <unnamed>: show application_name
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.989 EEST SMA amantzio at dynacom line:458 LOG: execute <unnamed>: show application_name
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.989 EEST SMA amantzio at dynacom line:459 LOG: duration: 0.023 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.989 EEST SMA amantzio at dynacom line:460 LOG: duration: 0.050 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"fb_useroptions"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.989 EEST SMA amantzio at dynacom line:461 LOG: duration: 0.029 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"fb_useroptions"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.989 EEST SMA amantzio at dynacom line:462 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"fb_useroptions"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.989 EEST SMA amantzio at dynacom line:463 LOG: duration: 0.064 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:464 LOG: duration: 0.058 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'fb_useroptions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:465 LOG: duration: 0.254 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'fb_useroptions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:466 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'fb_useroptions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:467 LOG: duration: 0.077 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:468 LOG: duration: 0.046 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:469 LOG: duration: 0.126 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:470 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:471 LOG: duration: 0.021 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:472 LOG: duration: 0.034 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:473 LOG: duration: 0.060 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:474 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:475 LOG: duration: 0.012 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:476 LOG: duration: 0.046 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:477 LOG: duration: 0.069 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.990 EEST SMA amantzio at dynacom line:478 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.991 EEST SMA amantzio at dynacom line:479 LOG: duration: 0.017 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.991 EEST SMA amantzio at dynacom line:480 LOG: duration: 0.033 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.991 EEST SMA amantzio at dynacom line:481 LOG: duration: 0.056 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.991 EEST SMA amantzio at dynacom line:482 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.991 EEST SMA amantzio at dynacom line:483 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.991 EEST SMA amantzio at dynacom line:484 LOG: duration: 0.139 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.991 EEST SMA amantzio at dynacom line:485 LOG: duration: 0.210 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.991 EEST SMA amantzio at dynacom line:486 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.991 EEST SMA amantzio at dynacom line:487 LOG: execute <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.991 EEST SMA amantzio at dynacom line:488 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:36.991 EEST SMA amantzio at dynacom line:489 LOG: duration: 0.030 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:47.371 EEST SMA amantzio at dynacom line:490 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:47.371 EEST SMA amantzio at dynacom line:491 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:47.371 EEST SMA amantzio at dynacom line:492 LOG: duration: 0.196 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:47.375 EEST SMA amantzio at dynacom line:493 LOG: duration: 3.882 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:47.375 EEST SMA amantzio at dynacom line:494 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.070 EEST SMA amantzio at dynacom line:495 LOG: duration: 695.229 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.147 EEST SMA amantzio at dynacom line:496 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.147 EEST SMA amantzio at dynacom line:497 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.147 EEST SMA amantzio at dynacom line:498 LOG: duration: 0.014 ms parse <unnamed>: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.147 EEST SMA amantzio at dynacom line:499 LOG: duration: 0.005 ms bind <unnamed>: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.147 EEST SMA amantzio at dynacom line:500 LOG: execute <unnamed>: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.147 EEST SMA amantzio at dynacom line:501 LOG: duration: 0.015 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.147 EEST SMA amantzio at dynacom line:502 LOG: duration: 0.039 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.147 EEST SMA amantzio at dynacom line:503 LOG: duration: 0.026 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.147 EEST SMA amantzio at dynacom line:504 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.147 EEST SMA amantzio at dynacom line:505 LOG: duration: 0.011 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.147 EEST SMA amantzio at dynacom line:506 LOG: duration: 0.056 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.148 EEST SMA amantzio at dynacom line:507 LOG: duration: 0.311 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.148 EEST SMA amantzio at dynacom line:508 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.148 EEST SMA amantzio at dynacom line:509 LOG: duration: 0.015 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.148 EEST SMA amantzio at dynacom line:510 LOG: duration: 0.010 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.148 EEST SMA amantzio at dynacom line:511 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.148 EEST SMA amantzio at dynacom line:512 LOG: duration: 0.005 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.148 EEST SMA amantzio at dynacom line:513 LOG: duration: 0.046 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.149 EEST SMA amantzio at dynacom line:514 LOG: duration: 0.427 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.149 EEST SMA amantzio at dynacom line:515 LOG: duration: 0.030 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.149 EEST SMA amantzio at dynacom line:516 LOG: duration: 0.099 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.150 EEST SMA amantzio at dynacom line:517 LOG: duration: 0.057 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.150 EEST SMA amantzio at dynacom line:518 LOG: duration: 0.512 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.150 EEST SMA amantzio at dynacom line:519 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.150 EEST SMA amantzio at dynacom line:520 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.150 EEST SMA amantzio at dynacom line:521 LOG: duration: 0.064 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.150 EEST SMA amantzio at dynacom line:522 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.151 EEST SMA amantzio at dynacom line:523 LOG: duration: 0.007 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.151 EEST SMA amantzio at dynacom line:524 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.151 EEST SMA amantzio at dynacom line:525 LOG: duration: 0.026 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.607 EEST SMA amantzio at dynacom line:526 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.607 EEST SMA amantzio at dynacom line:527 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.607 EEST SMA amantzio at dynacom line:528 LOG: duration: 0.068 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.607 EEST SMA amantzio at dynacom line:529 LOG: duration: 0.093 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:48.607 EEST SMA amantzio at dynacom line:530 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:53.270 EEST SMA amantzio at dynacom line:531 LOG: duration: 0.028 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:53.270 EEST SMA amantzio at dynacom line:532 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:53.271 EEST SMA amantzio at dynacom line:533 LOG: duration: 0.200 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:53.276 EEST SMA amantzio at dynacom line:534 LOG: duration: 5.735 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:53.276 EEST SMA amantzio at dynacom line:535 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:53.973 EEST SMA amantzio at dynacom line:536 LOG: duration: 696.734 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.022 EEST SMA amantzio at dynacom line:537 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.022 EEST SMA amantzio at dynacom line:538 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.022 EEST SMA amantzio at dynacom line:539 LOG: duration: 0.017 ms parse <unnamed>: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.022 EEST SMA amantzio at dynacom line:540 LOG: duration: 0.005 ms bind <unnamed>: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.022 EEST SMA amantzio at dynacom line:541 LOG: execute <unnamed>: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.022 EEST SMA amantzio at dynacom line:542 LOG: duration: 0.018 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.023 EEST SMA amantzio at dynacom line:543 LOG: duration: 0.043 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.023 EEST SMA amantzio at dynacom line:544 LOG: duration: 0.029 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.023 EEST SMA amantzio at dynacom line:545 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.023 EEST SMA amantzio at dynacom line:546 LOG: duration: 0.012 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.023 EEST SMA amantzio at dynacom line:547 LOG: duration: 0.075 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.023 EEST SMA amantzio at dynacom line:548 LOG: duration: 0.312 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.023 EEST SMA amantzio at dynacom line:549 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.023 EEST SMA amantzio at dynacom line:550 LOG: duration: 0.020 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.023 EEST SMA amantzio at dynacom line:551 LOG: duration: 0.012 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.023 EEST SMA amantzio at dynacom line:552 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.023 EEST SMA amantzio at dynacom line:553 LOG: duration: 0.007 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.024 EEST SMA amantzio at dynacom line:554 LOG: duration: 0.133 ms parse <unnamed>: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.024 EEST SMA amantzio at dynacom line:555 LOG: duration: 0.337 ms bind <unnamed>: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.024 EEST SMA amantzio at dynacom line:556 LOG: execute <unnamed>: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.024 EEST SMA amantzio at dynacom line:557 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.024 EEST SMA amantzio at dynacom line:558 LOG: duration: 0.025 ms parse <unnamed>: select machtypeclsid from machtypes where id=214748365
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.024 EEST SMA amantzio at dynacom line:559 LOG: duration: 0.073 ms bind <unnamed>: select machtypeclsid from machtypes where id=214748365
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.024 EEST SMA amantzio at dynacom line:560 LOG: execute <unnamed>: select machtypeclsid from machtypes where id=214748365
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.024 EEST SMA amantzio at dynacom line:561 LOG: duration: 0.018 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:562 LOG: duration: 0.032 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"parts"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:563 LOG: duration: 0.012 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"parts"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:564 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"parts"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:565 LOG: duration: 0.051 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:566 LOG: duration: 0.019 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"partclasses"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:567 LOG: duration: 0.010 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"partclasses"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:568 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"partclasses"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:569 LOG: duration: 0.039 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:570 LOG: duration: 0.037 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'parts' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:571 LOG: duration: 0.156 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'parts' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:572 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'parts' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:573 LOG: duration: 0.045 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:574 LOG: duration: 0.033 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'partclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:575 LOG: duration: 0.124 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'partclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:576 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'partclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:577 LOG: duration: 0.040 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.025 EEST SMA amantzio at dynacom line:578 LOG: duration: 0.030 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:579 LOG: duration: 0.084 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:580 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:581 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:582 LOG: duration: 0.027 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:583 LOG: duration: 0.077 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:584 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:585 LOG: duration: 0.011 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:586 LOG: duration: 0.023 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:587 LOG: duration: 0.040 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:588 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:589 LOG: duration: 0.010 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:590 LOG: duration: 0.022 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:591 LOG: duration: 0.038 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:592 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:593 LOG: duration: 0.008 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:594 LOG: duration: 0.026 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:595 LOG: duration: 0.042 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:596 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:597 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:598 LOG: duration: 0.024 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:599 LOG: duration: 0.041 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:600 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:601 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:602 LOG: duration: 0.022 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:603 LOG: duration: 0.038 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:604 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:605 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:606 LOG: duration: 0.023 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:607 LOG: duration: 0.039 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:608 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.026 EEST SMA amantzio at dynacom line:609 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.027 EEST SMA amantzio at dynacom line:610 LOG: duration: 0.130 ms parse <unnamed>: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.027 EEST SMA amantzio at dynacom line:611 LOG: duration: 0.539 ms bind <unnamed>: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.027 EEST SMA amantzio at dynacom line:612 LOG: execute <unnamed>: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.027 EEST SMA amantzio at dynacom line:613 LOG: duration: 0.048 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:614 LOG: duration: 0.024 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"pmsactions"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:615 LOG: duration: 0.011 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"pmsactions"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:616 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"pmsactions"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:617 LOG: duration: 0.031 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:618 LOG: duration: 0.036 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsactions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:619 LOG: duration: 0.129 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsactions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:620 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsactions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:621 LOG: duration: 0.039 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:622 LOG: duration: 0.029 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:623 LOG: duration: 0.083 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:624 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:625 LOG: duration: 0.011 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:626 LOG: duration: 0.023 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:627 LOG: duration: 0.040 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:628 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:629 LOG: duration: 0.011 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:630 LOG: duration: 0.026 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:631 LOG: duration: 0.044 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:632 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:633 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:634 LOG: duration: 0.027 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:635 LOG: duration: 0.040 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:636 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.028 EEST SMA amantzio at dynacom line:637 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:638 LOG: duration: 0.060 ms parse <unnamed>: select name from pmsactions where machclsid=$1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:639 LOG: duration: 0.127 ms bind <unnamed>: select name from pmsactions where machclsid=$1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:640 DETAIL: Parameters: $1 = '214748371'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:641 LOG: execute <unnamed>: select name from pmsactions where machclsid=$1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:642 DETAIL: Parameters: $1 = '214748371'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:643 LOG: duration: 0.193 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:644 LOG: duration: 0.017 ms parse pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"pmsapps"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:645 LOG: duration: 0.012 ms bind pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"pmsapps"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:646 LOG: execute pgpool59728/pgpool59728: SELECT COALESCE(pg_catalog.to_regclass('"pmsapps"')::oid, 0)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:647 LOG: duration: 0.021 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:648 LOG: duration: 0.027 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsapps' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:649 LOG: duration: 0.118 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsapps' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:650 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsapps' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:651 LOG: duration: 0.042 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.029 EEST SMA amantzio at dynacom line:652 LOG: duration: 0.031 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:653 LOG: duration: 0.090 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:654 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:655 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:656 LOG: duration: 0.030 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:657 LOG: duration: 0.048 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:658 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relrowsecurity
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:659 LOG: duration: 0.012 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:660 LOG: duration: 0.031 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:661 LOG: duration: 0.048 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:662 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND (c.relkind = 'v' OR c.relkind = 'm')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:663 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:664 LOG: duration: 0.024 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:665 LOG: duration: 0.040 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:666 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relpersistence = 'u'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:667 LOG: duration: 0.009 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:668 LOG: duration: 0.050 ms parse <unnamed>: select name from pmsapps
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:669 LOG: duration: 0.081 ms bind <unnamed>: select name from pmsapps
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:670 LOG: execute <unnamed>: select name from pmsapps
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:671 LOG: duration: 0.017 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:672 LOG: duration: 0.007 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:673 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.030 EEST SMA amantzio at dynacom line:674 LOG: duration: 0.041 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.076 EEST SMA amantzio at dynacom line:675 LOG: duration: 0.027 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.076 EEST SMA amantzio at dynacom line:676 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.076 EEST SMA amantzio at dynacom line:677 LOG: duration: 0.090 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.077 EEST SMA amantzio at dynacom line:678 LOG: duration: 0.097 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:54.077 EEST SMA amantzio at dynacom line:679 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:57.475 EEST SMA amantzio at dynacom line:680 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:57.475 EEST SMA amantzio at dynacom line:681 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:57.476 EEST SMA amantzio at dynacom line:682 LOG: duration: 0.192 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:57.479 EEST SMA amantzio at dynacom line:683 LOG: duration: 3.228 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:57.479 EEST SMA amantzio at dynacom line:684 LOG: execute <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.092 EEST SMA amantzio at dynacom line:685 LOG: duration: 613.304 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.131 EEST SMA amantzio at dynacom line:686 LOG: duration: 0.021 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.131 EEST SMA amantzio at dynacom line:687 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.131 EEST SMA amantzio at dynacom line:688 LOG: duration: 0.014 ms parse <unnamed>: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.131 EEST SMA amantzio at dynacom line:689 LOG: duration: 0.004 ms bind <unnamed>: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.131 EEST SMA amantzio at dynacom line:690 LOG: execute <unnamed>: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.131 EEST SMA amantzio at dynacom line:691 LOG: duration: 0.014 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.131 EEST SMA amantzio at dynacom line:692 LOG: duration: 0.042 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.131 EEST SMA amantzio at dynacom line:693 LOG: duration: 0.030 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.131 EEST SMA amantzio at dynacom line:694 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.131 EEST SMA amantzio at dynacom line:695 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.131 EEST SMA amantzio at dynacom line:696 LOG: duration: 0.057 ms parse <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.132 EEST SMA amantzio at dynacom line:697 LOG: duration: 0.297 ms bind <unnamed>: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.132 EEST SMA amantzio at dynacom line:698 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.133 EEST SMA amantzio at dynacom line:699 LOG: duration: 0.141 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.133 EEST SMA amantzio at dynacom line:700 LOG: duration: 0.198 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.133 EEST SMA amantzio at dynacom line:701 DETAIL: Parameters: $1 = 'sys1', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767517', $9 = '214767517', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.133 EEST SMA amantzio at dynacom line:702 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.133 EEST SMA amantzio at dynacom line:703 DETAIL: Parameters: $1 = 'sys1', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767517', $9 = '214767517', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.135 EEST SMA amantzio at dynacom line:704 LOG: duration: 1.841 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.135 EEST SMA amantzio at dynacom line:705 LOG: duration: 0.060 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.135 EEST SMA amantzio at dynacom line:706 LOG: duration: 0.218 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.135 EEST SMA amantzio at dynacom line:707 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.135 EEST SMA amantzio at dynacom line:708 LOG: duration: 0.020 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.136 EEST SMA amantzio at dynacom line:709 LOG: duration: 0.076 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.136 EEST SMA amantzio at dynacom line:710 LOG: duration: 0.018 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.136 EEST SMA amantzio at dynacom line:711 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.136 EEST SMA amantzio at dynacom line:712 LOG: duration: 0.011 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.136 EEST SMA amantzio at dynacom line:713 LOG: duration: 0.045 ms parse pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.136 EEST SMA amantzio at dynacom line:714 LOG: duration: 0.138 ms bind pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.136 EEST SMA amantzio at dynacom line:715 LOG: execute pgpool59728/pgpool59728: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.136 EEST SMA amantzio at dynacom line:716 LOG: duration: 0.014 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.137 EEST SMA amantzio at dynacom line:717 LOG: duration: 0.049 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767518,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.137 EEST SMA amantzio at dynacom line:718 LOG: duration: 0.130 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767518,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.137 EEST SMA amantzio at dynacom line:719 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767518,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.137 EEST SMA amantzio at dynacom line:720 LOG: duration: 0.033 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.140 EEST SMA amantzio at dynacom line:721 LOG: duration: 0.005 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.140 EEST SMA amantzio at dynacom line:722 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.144 EEST SMA amantzio at dynacom line:723 LOG: duration: 3.053 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.652 EEST SMA amantzio at dynacom line:724 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.652 EEST SMA amantzio at dynacom line:725 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.653 EEST SMA amantzio at dynacom line:726 LOG: duration: 0.069 ms parse <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.653 EEST SMA amantzio at dynacom line:727 LOG: duration: 0.094 ms bind <unnamed>: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:09:58.653 EEST SMA amantzio at dynacom line:728 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:01.619 EEST SMA amantzio at dynacom line:729 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:01.619 EEST SMA amantzio at dynacom line:730 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:01.620 EEST SMA amantzio at dynacom line:731 LOG: duration: 0.170 ms parse S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:01.623 EEST SMA amantzio at dynacom line:732 LOG: duration: 3.222 ms bind S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:01.623 EEST SMA amantzio at dynacom line:733 LOG: execute S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.235 EEST SMA amantzio at dynacom line:734 LOG: duration: 612.328 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.270 EEST SMA amantzio at dynacom line:735 LOG: duration: 0.016 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.270 EEST SMA amantzio at dynacom line:736 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.270 EEST SMA amantzio at dynacom line:737 LOG: duration: 0.016 ms parse S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.270 EEST SMA amantzio at dynacom line:738 LOG: duration: 0.008 ms bind S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.270 EEST SMA amantzio at dynacom line:739 LOG: execute S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.270 EEST SMA amantzio at dynacom line:740 LOG: duration: 0.015 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.271 EEST SMA amantzio at dynacom line:741 LOG: duration: 0.041 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.271 EEST SMA amantzio at dynacom line:742 LOG: duration: 0.086 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.271 EEST SMA amantzio at dynacom line:743 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.271 EEST SMA amantzio at dynacom line:744 LOG: duration: 0.011 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.271 EEST SMA amantzio at dynacom line:745 LOG: duration: 0.057 ms parse S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.271 EEST SMA amantzio at dynacom line:746 LOG: duration: 0.287 ms bind S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.271 EEST SMA amantzio at dynacom line:747 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.271 EEST SMA amantzio at dynacom line:748 LOG: duration: 0.013 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.271 EEST SMA amantzio at dynacom line:749 LOG: duration: 0.009 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.271 EEST SMA amantzio at dynacom line:750 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.271 EEST SMA amantzio at dynacom line:751 LOG: duration: 0.005 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.271 EEST SMA amantzio at dynacom line:752 LOG: duration: 0.051 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.272 EEST SMA amantzio at dynacom line:753 LOG: duration: 0.393 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.272 EEST SMA amantzio at dynacom line:754 LOG: duration: 0.025 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.272 EEST SMA amantzio at dynacom line:755 LOG: duration: 0.089 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.272 EEST SMA amantzio at dynacom line:756 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.272 EEST SMA amantzio at dynacom line:757 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.273 EEST SMA amantzio at dynacom line:758 LOG: duration: 0.053 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.273 EEST SMA amantzio at dynacom line:759 LOG: duration: 0.485 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.273 EEST SMA amantzio at dynacom line:760 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.273 EEST SMA amantzio at dynacom line:761 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.273 EEST SMA amantzio at dynacom line:762 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.273 EEST SMA amantzio at dynacom line:763 LOG: duration: 0.034 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.274 EEST SMA amantzio at dynacom line:764 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.274 EEST SMA amantzio at dynacom line:765 LOG: duration: 0.068 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.274 EEST SMA amantzio at dynacom line:766 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.274 EEST SMA amantzio at dynacom line:767 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.274 EEST SMA amantzio at dynacom line:768 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.322 EEST SMA amantzio at dynacom line:769 LOG: duration: 48.431 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.323 EEST SMA amantzio at dynacom line:770 LOG: duration: 0.137 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.324 EEST SMA amantzio at dynacom line:771 LOG: duration: 0.645 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.324 EEST SMA amantzio at dynacom line:772 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.324 EEST SMA amantzio at dynacom line:773 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.324 EEST SMA amantzio at dynacom line:774 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.324 EEST SMA amantzio at dynacom line:775 LOG: duration: 0.039 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.324 EEST SMA amantzio at dynacom line:776 LOG: duration: 0.030 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.324 EEST SMA amantzio at dynacom line:777 LOG: duration: 0.076 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.324 EEST SMA amantzio at dynacom line:778 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.324 EEST SMA amantzio at dynacom line:779 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.324 EEST SMA amantzio at dynacom line:780 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.372 EEST SMA amantzio at dynacom line:781 LOG: duration: 48.178 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.373 EEST SMA amantzio at dynacom line:782 LOG: duration: 0.034 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.373 EEST SMA amantzio at dynacom line:783 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.373 EEST SMA amantzio at dynacom line:784 LOG: duration: 0.077 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.557 EEST SMA amantzio at dynacom line:785 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.558 EEST SMA amantzio at dynacom line:786 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.558 EEST SMA amantzio at dynacom line:787 LOG: duration: 0.084 ms parse S_5: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.558 EEST SMA amantzio at dynacom line:788 LOG: duration: 0.103 ms bind S_5: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:02.558 EEST SMA amantzio at dynacom line:789 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.034 EEST SMA amantzio at dynacom line:790 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.034 EEST SMA amantzio at dynacom line:791 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.037 EEST SMA amantzio at dynacom line:792 LOG: duration: 2.686 ms bind S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.037 EEST SMA amantzio at dynacom line:793 LOG: execute S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.748 EEST SMA amantzio at dynacom line:794 LOG: duration: 711.025 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.789 EEST SMA amantzio at dynacom line:795 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.789 EEST SMA amantzio at dynacom line:796 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.789 EEST SMA amantzio at dynacom line:797 LOG: duration: 0.006 ms bind S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.789 EEST SMA amantzio at dynacom line:798 LOG: execute S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.789 EEST SMA amantzio at dynacom line:799 LOG: duration: 0.020 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.789 EEST SMA amantzio at dynacom line:800 LOG: duration: 0.366 ms bind S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.789 EEST SMA amantzio at dynacom line:801 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.789 EEST SMA amantzio at dynacom line:802 LOG: execute S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.789 EEST SMA amantzio at dynacom line:803 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.789 EEST SMA amantzio at dynacom line:804 LOG: duration: 0.019 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.790 EEST SMA amantzio at dynacom line:805 LOG: duration: 0.111 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.790 EEST SMA amantzio at dynacom line:806 LOG: duration: 0.114 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.790 EEST SMA amantzio at dynacom line:807 DETAIL: Parameters: $1 = 'sys2', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767517', $9 = '214767517', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.790 EEST SMA amantzio at dynacom line:808 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.790 EEST SMA amantzio at dynacom line:809 DETAIL: Parameters: $1 = 'sys2', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767517', $9 = '214767517', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.791 EEST SMA amantzio at dynacom line:810 LOG: duration: 0.402 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.791 EEST SMA amantzio at dynacom line:811 LOG: duration: 0.014 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.791 EEST SMA amantzio at dynacom line:812 LOG: duration: 0.010 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.791 EEST SMA amantzio at dynacom line:813 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.791 EEST SMA amantzio at dynacom line:814 LOG: duration: 0.005 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.791 EEST SMA amantzio at dynacom line:815 LOG: duration: 0.037 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767519,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.791 EEST SMA amantzio at dynacom line:816 LOG: duration: 0.102 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767519,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.791 EEST SMA amantzio at dynacom line:817 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767519,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.791 EEST SMA amantzio at dynacom line:818 LOG: duration: 0.023 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.794 EEST SMA amantzio at dynacom line:819 LOG: duration: 0.004 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.794 EEST SMA amantzio at dynacom line:820 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.796 EEST SMA amantzio at dynacom line:821 LOG: duration: 2.017 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.872 EEST SMA amantzio at dynacom line:822 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.872 EEST SMA amantzio at dynacom line:823 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.872 EEST SMA amantzio at dynacom line:824 LOG: duration: 0.118 ms bind S_5: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:08.872 EEST SMA amantzio at dynacom line:825 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.145 EEST SMA amantzio at dynacom line:826 LOG: duration: 0.017 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.145 EEST SMA amantzio at dynacom line:827 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.147 EEST SMA amantzio at dynacom line:828 LOG: duration: 2.233 ms bind S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.147 EEST SMA amantzio at dynacom line:829 LOG: execute S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.745 EEST SMA amantzio at dynacom line:830 LOG: duration: 597.512 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.770 EEST SMA amantzio at dynacom line:831 LOG: duration: 0.017 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.770 EEST SMA amantzio at dynacom line:832 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.770 EEST SMA amantzio at dynacom line:833 LOG: duration: 0.009 ms bind S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.770 EEST SMA amantzio at dynacom line:834 LOG: execute S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.770 EEST SMA amantzio at dynacom line:835 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.771 EEST SMA amantzio at dynacom line:836 LOG: duration: 0.416 ms bind S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.771 EEST SMA amantzio at dynacom line:837 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.771 EEST SMA amantzio at dynacom line:838 LOG: execute S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.771 EEST SMA amantzio at dynacom line:839 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.771 EEST SMA amantzio at dynacom line:840 LOG: duration: 0.021 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.771 EEST SMA amantzio at dynacom line:841 LOG: duration: 0.041 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.771 EEST SMA amantzio at dynacom line:842 LOG: duration: 0.013 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.771 EEST SMA amantzio at dynacom line:843 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.771 EEST SMA amantzio at dynacom line:844 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.771 EEST SMA amantzio at dynacom line:845 LOG: duration: 0.068 ms parse <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.772 EEST SMA amantzio at dynacom line:846 LOG: duration: 0.406 ms bind <unnamed>: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.772 EEST SMA amantzio at dynacom line:847 LOG: duration: 0.030 ms parse <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.772 EEST SMA amantzio at dynacom line:848 LOG: duration: 0.098 ms bind <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.772 EEST SMA amantzio at dynacom line:849 LOG: execute <unnamed>: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.772 EEST SMA amantzio at dynacom line:850 LOG: duration: 0.014 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.772 EEST SMA amantzio at dynacom line:851 LOG: duration: 0.060 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.773 EEST SMA amantzio at dynacom line:852 LOG: duration: 0.543 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.773 EEST SMA amantzio at dynacom line:853 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.773 EEST SMA amantzio at dynacom line:854 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.773 EEST SMA amantzio at dynacom line:855 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.773 EEST SMA amantzio at dynacom line:856 LOG: duration: 0.040 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.773 EEST SMA amantzio at dynacom line:857 LOG: duration: 0.033 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.773 EEST SMA amantzio at dynacom line:858 LOG: duration: 0.065 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.773 EEST SMA amantzio at dynacom line:859 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.773 EEST SMA amantzio at dynacom line:860 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.773 EEST SMA amantzio at dynacom line:861 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.819 EEST SMA amantzio at dynacom line:862 LOG: duration: 45.539 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.820 EEST SMA amantzio at dynacom line:863 LOG: duration: 0.119 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.820 EEST SMA amantzio at dynacom line:864 LOG: duration: 0.633 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.820 EEST SMA amantzio at dynacom line:865 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.820 EEST SMA amantzio at dynacom line:866 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.820 EEST SMA amantzio at dynacom line:867 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.820 EEST SMA amantzio at dynacom line:868 LOG: duration: 0.038 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.821 EEST SMA amantzio at dynacom line:869 LOG: duration: 0.027 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.821 EEST SMA amantzio at dynacom line:870 LOG: duration: 0.060 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.821 EEST SMA amantzio at dynacom line:871 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.821 EEST SMA amantzio at dynacom line:872 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.821 EEST SMA amantzio at dynacom line:873 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.864 EEST SMA amantzio at dynacom line:874 LOG: duration: 43.521 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.865 EEST SMA amantzio at dynacom line:875 LOG: duration: 0.135 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.866 EEST SMA amantzio at dynacom line:876 LOG: duration: 0.657 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.866 EEST SMA amantzio at dynacom line:877 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.866 EEST SMA amantzio at dynacom line:878 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.866 EEST SMA amantzio at dynacom line:879 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.866 EEST SMA amantzio at dynacom line:880 LOG: duration: 0.040 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.866 EEST SMA amantzio at dynacom line:881 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.866 EEST SMA amantzio at dynacom line:882 LOG: duration: 0.063 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.866 EEST SMA amantzio at dynacom line:883 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.866 EEST SMA amantzio at dynacom line:884 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.866 EEST SMA amantzio at dynacom line:885 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.910 EEST SMA amantzio at dynacom line:886 LOG: duration: 43.222 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.910 EEST SMA amantzio at dynacom line:887 LOG: duration: 0.023 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.910 EEST SMA amantzio at dynacom line:888 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:11.910 EEST SMA amantzio at dynacom line:889 LOG: duration: 0.059 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:12.140 EEST SMA amantzio at dynacom line:890 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:12.140 EEST SMA amantzio at dynacom line:891 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:12.141 EEST SMA amantzio at dynacom line:892 LOG: duration: 0.115 ms bind S_5: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:12.141 EEST SMA amantzio at dynacom line:893 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:16.442 EEST SMA amantzio at dynacom line:894 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:16.442 EEST SMA amantzio at dynacom line:895 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:16.446 EEST SMA amantzio at dynacom line:896 LOG: duration: 3.586 ms bind S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:16.446 EEST SMA amantzio at dynacom line:897 LOG: execute S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.124 EEST SMA amantzio at dynacom line:898 LOG: duration: 677.668 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.148 EEST SMA amantzio at dynacom line:899 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.148 EEST SMA amantzio at dynacom line:900 LOG: duration: 0.009 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.149 EEST SMA amantzio at dynacom line:901 LOG: duration: 0.008 ms bind S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.149 EEST SMA amantzio at dynacom line:902 LOG: execute S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.149 EEST SMA amantzio at dynacom line:903 LOG: duration: 0.017 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.149 EEST SMA amantzio at dynacom line:904 LOG: duration: 0.364 ms bind S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.149 EEST SMA amantzio at dynacom line:905 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.149 EEST SMA amantzio at dynacom line:906 LOG: execute S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.149 EEST SMA amantzio at dynacom line:907 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.149 EEST SMA amantzio at dynacom line:908 LOG: duration: 0.021 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.150 EEST SMA amantzio at dynacom line:909 LOG: duration: 0.191 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.150 EEST SMA amantzio at dynacom line:910 LOG: duration: 0.142 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.150 EEST SMA amantzio at dynacom line:911 DETAIL: Parameters: $1 = 'sys3', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767517', $9 = '214767517', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.150 EEST SMA amantzio at dynacom line:912 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.150 EEST SMA amantzio at dynacom line:913 DETAIL: Parameters: $1 = 'sys3', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767517', $9 = '214767517', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.150 EEST SMA amantzio at dynacom line:914 LOG: duration: 0.462 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.150 EEST SMA amantzio at dynacom line:915 LOG: duration: 0.018 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.150 EEST SMA amantzio at dynacom line:916 LOG: duration: 0.014 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.150 EEST SMA amantzio at dynacom line:917 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.150 EEST SMA amantzio at dynacom line:918 LOG: duration: 0.007 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.151 EEST SMA amantzio at dynacom line:919 LOG: duration: 0.039 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767520,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.151 EEST SMA amantzio at dynacom line:920 LOG: duration: 0.122 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767520,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.151 EEST SMA amantzio at dynacom line:921 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767520,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.151 EEST SMA amantzio at dynacom line:922 LOG: duration: 0.028 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.155 EEST SMA amantzio at dynacom line:923 LOG: duration: 0.007 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.155 EEST SMA amantzio at dynacom line:924 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.157 EEST SMA amantzio at dynacom line:925 LOG: duration: 2.309 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.305 EEST SMA amantzio at dynacom line:926 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.305 EEST SMA amantzio at dynacom line:927 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.305 EEST SMA amantzio at dynacom line:928 LOG: duration: 0.119 ms bind S_5: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:17.305 EEST SMA amantzio at dynacom line:929 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:19.688 EEST SMA amantzio at dynacom line:930 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:19.688 EEST SMA amantzio at dynacom line:931 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:19.691 EEST SMA amantzio at dynacom line:932 LOG: duration: 2.427 ms bind S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:19.691 EEST SMA amantzio at dynacom line:933 LOG: execute S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.383 EEST SMA amantzio at dynacom line:934 LOG: duration: 691.811 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.407 EEST SMA amantzio at dynacom line:935 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.407 EEST SMA amantzio at dynacom line:936 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.407 EEST SMA amantzio at dynacom line:937 LOG: duration: 0.009 ms bind S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.407 EEST SMA amantzio at dynacom line:938 LOG: execute S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.407 EEST SMA amantzio at dynacom line:939 LOG: duration: 0.015 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.408 EEST SMA amantzio at dynacom line:940 LOG: duration: 0.424 ms bind S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.408 EEST SMA amantzio at dynacom line:941 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.408 EEST SMA amantzio at dynacom line:942 LOG: execute S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.408 EEST SMA amantzio at dynacom line:943 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.408 EEST SMA amantzio at dynacom line:944 LOG: duration: 0.024 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.408 EEST SMA amantzio at dynacom line:945 LOG: duration: 0.040 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.408 EEST SMA amantzio at dynacom line:946 LOG: duration: 0.013 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.408 EEST SMA amantzio at dynacom line:947 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.408 EEST SMA amantzio at dynacom line:948 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.408 EEST SMA amantzio at dynacom line:949 LOG: duration: 0.084 ms parse S_6: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.409 EEST SMA amantzio at dynacom line:950 LOG: duration: 0.432 ms bind S_6: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.409 EEST SMA amantzio at dynacom line:951 LOG: duration: 0.041 ms parse S_7: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.409 EEST SMA amantzio at dynacom line:952 LOG: duration: 0.109 ms bind S_7: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.409 EEST SMA amantzio at dynacom line:953 LOG: execute S_7: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.409 EEST SMA amantzio at dynacom line:954 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.410 EEST SMA amantzio at dynacom line:955 LOG: duration: 0.096 ms parse S_8: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.410 EEST SMA amantzio at dynacom line:956 LOG: duration: 0.550 ms bind S_8: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.410 EEST SMA amantzio at dynacom line:957 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.410 EEST SMA amantzio at dynacom line:958 LOG: execute S_8: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.410 EEST SMA amantzio at dynacom line:959 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.410 EEST SMA amantzio at dynacom line:960 LOG: duration: 0.040 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.411 EEST SMA amantzio at dynacom line:961 LOG: duration: 0.035 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.411 EEST SMA amantzio at dynacom line:962 LOG: duration: 0.081 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.411 EEST SMA amantzio at dynacom line:963 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.411 EEST SMA amantzio at dynacom line:964 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.411 EEST SMA amantzio at dynacom line:965 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.461 EEST SMA amantzio at dynacom line:966 LOG: duration: 50.515 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.462 EEST SMA amantzio at dynacom line:967 LOG: duration: 0.157 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.463 EEST SMA amantzio at dynacom line:968 LOG: duration: 0.842 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.463 EEST SMA amantzio at dynacom line:969 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.463 EEST SMA amantzio at dynacom line:970 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.463 EEST SMA amantzio at dynacom line:971 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.463 EEST SMA amantzio at dynacom line:972 LOG: duration: 0.052 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.463 EEST SMA amantzio at dynacom line:973 LOG: duration: 0.047 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.463 EEST SMA amantzio at dynacom line:974 LOG: duration: 0.099 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.463 EEST SMA amantzio at dynacom line:975 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.463 EEST SMA amantzio at dynacom line:976 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.463 EEST SMA amantzio at dynacom line:977 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.510 EEST SMA amantzio at dynacom line:978 LOG: duration: 46.809 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.511 EEST SMA amantzio at dynacom line:979 LOG: duration: 0.121 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.512 EEST SMA amantzio at dynacom line:980 LOG: duration: 0.638 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.512 EEST SMA amantzio at dynacom line:981 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.512 EEST SMA amantzio at dynacom line:982 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.512 EEST SMA amantzio at dynacom line:983 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.512 EEST SMA amantzio at dynacom line:984 LOG: duration: 0.038 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.512 EEST SMA amantzio at dynacom line:985 LOG: duration: 0.030 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.512 EEST SMA amantzio at dynacom line:986 LOG: duration: 0.072 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.512 EEST SMA amantzio at dynacom line:987 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.512 EEST SMA amantzio at dynacom line:988 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.512 EEST SMA amantzio at dynacom line:989 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.562 EEST SMA amantzio at dynacom line:990 LOG: duration: 50.281 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.563 EEST SMA amantzio at dynacom line:991 LOG: duration: 0.201 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.564 EEST SMA amantzio at dynacom line:992 LOG: duration: 0.907 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.564 EEST SMA amantzio at dynacom line:993 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.564 EEST SMA amantzio at dynacom line:994 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.564 EEST SMA amantzio at dynacom line:995 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.564 EEST SMA amantzio at dynacom line:996 LOG: duration: 0.049 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.565 EEST SMA amantzio at dynacom line:997 LOG: duration: 0.055 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.565 EEST SMA amantzio at dynacom line:998 LOG: duration: 0.087 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.565 EEST SMA amantzio at dynacom line:999 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.565 EEST SMA amantzio at dynacom line:1000 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.565 EEST SMA amantzio at dynacom line:1001 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.614 EEST SMA amantzio at dynacom line:1002 LOG: duration: 49.183 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.615 EEST SMA amantzio at dynacom line:1003 LOG: duration: 0.023 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.615 EEST SMA amantzio at dynacom line:1004 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.615 EEST SMA amantzio at dynacom line:1005 LOG: duration: 0.056 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.787 EEST SMA amantzio at dynacom line:1006 LOG: duration: 0.023 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.787 EEST SMA amantzio at dynacom line:1007 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.788 EEST SMA amantzio at dynacom line:1008 LOG: duration: 0.114 ms bind S_5: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:20.788 EEST SMA amantzio at dynacom line:1009 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.161 EEST SMA amantzio at dynacom line:1010 LOG: duration: 0.017 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.161 EEST SMA amantzio at dynacom line:1011 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.163 EEST SMA amantzio at dynacom line:1012 LOG: duration: 2.417 ms bind S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.163 EEST SMA amantzio at dynacom line:1013 LOG: execute S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.770 EEST SMA amantzio at dynacom line:1014 LOG: duration: 606.219 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.804 EEST SMA amantzio at dynacom line:1015 LOG: duration: 0.025 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.804 EEST SMA amantzio at dynacom line:1016 LOG: duration: 0.008 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.804 EEST SMA amantzio at dynacom line:1017 LOG: duration: 0.007 ms bind S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.804 EEST SMA amantzio at dynacom line:1018 LOG: execute S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.804 EEST SMA amantzio at dynacom line:1019 LOG: duration: 0.022 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.805 EEST SMA amantzio at dynacom line:1020 LOG: duration: 0.463 ms bind S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.805 EEST SMA amantzio at dynacom line:1021 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.805 EEST SMA amantzio at dynacom line:1022 LOG: execute S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.805 EEST SMA amantzio at dynacom line:1023 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.805 EEST SMA amantzio at dynacom line:1024 LOG: duration: 0.027 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.805 EEST SMA amantzio at dynacom line:1025 LOG: duration: 0.140 ms parse <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.805 EEST SMA amantzio at dynacom line:1026 LOG: duration: 0.141 ms bind <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.805 EEST SMA amantzio at dynacom line:1027 DETAIL: Parameters: $1 = 'sys4', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767517', $9 = '214767517', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.805 EEST SMA amantzio at dynacom line:1028 LOG: execute <unnamed>: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.805 EEST SMA amantzio at dynacom line:1029 DETAIL: Parameters: $1 = 'sys4', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767517', $9 = '214767517', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.806 EEST SMA amantzio at dynacom line:1030 LOG: duration: 0.473 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.806 EEST SMA amantzio at dynacom line:1031 LOG: duration: 0.029 ms parse <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.806 EEST SMA amantzio at dynacom line:1032 LOG: duration: 0.017 ms bind <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.806 EEST SMA amantzio at dynacom line:1033 LOG: execute <unnamed>: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.806 EEST SMA amantzio at dynacom line:1034 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.806 EEST SMA amantzio at dynacom line:1035 LOG: duration: 0.054 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767521,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.807 EEST SMA amantzio at dynacom line:1036 LOG: duration: 0.145 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767521,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.807 EEST SMA amantzio at dynacom line:1037 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767521,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.807 EEST SMA amantzio at dynacom line:1038 LOG: duration: 0.035 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.811 EEST SMA amantzio at dynacom line:1039 LOG: duration: 0.008 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.811 EEST SMA amantzio at dynacom line:1040 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.822 EEST SMA amantzio at dynacom line:1041 LOG: duration: 10.699 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.953 EEST SMA amantzio at dynacom line:1042 LOG: duration: 0.027 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.953 EEST SMA amantzio at dynacom line:1043 LOG: duration: 0.007 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.953 EEST SMA amantzio at dynacom line:1044 LOG: duration: 0.133 ms bind S_5: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:25.953 EEST SMA amantzio at dynacom line:1045 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:28.546 EEST SMA amantzio at dynacom line:1046 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:28.546 EEST SMA amantzio at dynacom line:1047 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:28.549 EEST SMA amantzio at dynacom line:1048 LOG: duration: 2.137 ms bind S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:28.549 EEST SMA amantzio at dynacom line:1049 LOG: execute S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.164 EEST SMA amantzio at dynacom line:1050 LOG: duration: 615.640 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.184 EEST SMA amantzio at dynacom line:1051 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.184 EEST SMA amantzio at dynacom line:1052 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.184 EEST SMA amantzio at dynacom line:1053 LOG: duration: 0.011 ms bind S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.184 EEST SMA amantzio at dynacom line:1054 LOG: execute S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.184 EEST SMA amantzio at dynacom line:1055 LOG: duration: 0.020 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.184 EEST SMA amantzio at dynacom line:1056 LOG: duration: 0.064 ms bind S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.184 EEST SMA amantzio at dynacom line:1057 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.184 EEST SMA amantzio at dynacom line:1058 LOG: execute S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.184 EEST SMA amantzio at dynacom line:1059 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.184 EEST SMA amantzio at dynacom line:1060 LOG: duration: 0.045 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.185 EEST SMA amantzio at dynacom line:1061 LOG: duration: 0.046 ms bind S_6: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.185 EEST SMA amantzio at dynacom line:1062 LOG: execute S_6: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.185 EEST SMA amantzio at dynacom line:1063 LOG: duration: 0.030 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.185 EEST SMA amantzio at dynacom line:1064 LOG: duration: 0.022 ms bind S_7: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.185 EEST SMA amantzio at dynacom line:1065 LOG: execute S_7: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.185 EEST SMA amantzio at dynacom line:1066 LOG: duration: 0.015 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1067 LOG: duration: 0.790 ms bind S_8: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1068 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1069 LOG: execute S_8: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1070 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1071 LOG: duration: 0.035 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1072 LOG: duration: 0.035 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1073 LOG: duration: 0.013 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1074 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1075 LOG: duration: 0.013 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1076 LOG: duration: 0.045 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1077 LOG: duration: 0.068 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1078 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1079 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.186 EEST SMA amantzio at dynacom line:1080 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.238 EEST SMA amantzio at dynacom line:1081 LOG: duration: 51.586 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.239 EEST SMA amantzio at dynacom line:1082 LOG: duration: 0.148 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.240 EEST SMA amantzio at dynacom line:1083 LOG: duration: 0.715 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.240 EEST SMA amantzio at dynacom line:1084 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.240 EEST SMA amantzio at dynacom line:1085 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.240 EEST SMA amantzio at dynacom line:1086 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.240 EEST SMA amantzio at dynacom line:1087 LOG: duration: 0.044 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.240 EEST SMA amantzio at dynacom line:1088 LOG: duration: 0.037 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.240 EEST SMA amantzio at dynacom line:1089 LOG: duration: 0.077 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.240 EEST SMA amantzio at dynacom line:1090 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.240 EEST SMA amantzio at dynacom line:1091 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.240 EEST SMA amantzio at dynacom line:1092 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.290 EEST SMA amantzio at dynacom line:1093 LOG: duration: 50.298 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.291 EEST SMA amantzio at dynacom line:1094 LOG: duration: 0.119 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.292 EEST SMA amantzio at dynacom line:1095 LOG: duration: 0.630 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.292 EEST SMA amantzio at dynacom line:1096 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.292 EEST SMA amantzio at dynacom line:1097 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.292 EEST SMA amantzio at dynacom line:1098 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.292 EEST SMA amantzio at dynacom line:1099 LOG: duration: 0.040 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.292 EEST SMA amantzio at dynacom line:1100 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.292 EEST SMA amantzio at dynacom line:1101 LOG: duration: 0.070 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.292 EEST SMA amantzio at dynacom line:1102 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.292 EEST SMA amantzio at dynacom line:1103 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.292 EEST SMA amantzio at dynacom line:1104 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.338 EEST SMA amantzio at dynacom line:1105 LOG: duration: 46.300 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.339 EEST SMA amantzio at dynacom line:1106 LOG: duration: 0.133 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.340 EEST SMA amantzio at dynacom line:1107 LOG: duration: 0.787 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.340 EEST SMA amantzio at dynacom line:1108 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.340 EEST SMA amantzio at dynacom line:1109 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.340 EEST SMA amantzio at dynacom line:1110 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.340 EEST SMA amantzio at dynacom line:1111 LOG: duration: 0.048 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.340 EEST SMA amantzio at dynacom line:1112 LOG: duration: 0.028 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.340 EEST SMA amantzio at dynacom line:1113 LOG: duration: 0.071 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.340 EEST SMA amantzio at dynacom line:1114 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.340 EEST SMA amantzio at dynacom line:1115 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.340 EEST SMA amantzio at dynacom line:1116 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.382 EEST SMA amantzio at dynacom line:1117 LOG: duration: 41.995 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.383 EEST SMA amantzio at dynacom line:1118 LOG: duration: 0.121 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.384 EEST SMA amantzio at dynacom line:1119 LOG: duration: 0.782 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.384 EEST SMA amantzio at dynacom line:1120 DETAIL: Parameters: $1 = '214767521'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.384 EEST SMA amantzio at dynacom line:1121 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.384 EEST SMA amantzio at dynacom line:1122 DETAIL: Parameters: $1 = '214767521'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.384 EEST SMA amantzio at dynacom line:1123 LOG: duration: 0.047 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.384 EEST SMA amantzio at dynacom line:1124 LOG: duration: 0.034 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.384 EEST SMA amantzio at dynacom line:1125 LOG: duration: 0.074 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.384 EEST SMA amantzio at dynacom line:1126 DETAIL: Parameters: $1 = '214767521'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.384 EEST SMA amantzio at dynacom line:1127 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.384 EEST SMA amantzio at dynacom line:1128 DETAIL: Parameters: $1 = '214767521'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.429 EEST SMA amantzio at dynacom line:1129 LOG: duration: 45.172 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.430 EEST SMA amantzio at dynacom line:1130 LOG: duration: 0.019 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.430 EEST SMA amantzio at dynacom line:1131 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.430 EEST SMA amantzio at dynacom line:1132 LOG: duration: 0.051 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.441 EEST SMA amantzio at dynacom line:1133 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.441 EEST SMA amantzio at dynacom line:1134 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.441 EEST SMA amantzio at dynacom line:1135 LOG: duration: 0.047 ms bind S_5: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:29.441 EEST SMA amantzio at dynacom line:1136 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:34.852 EEST SMA amantzio at dynacom line:1137 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:34.852 EEST SMA amantzio at dynacom line:1138 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:34.855 EEST SMA amantzio at dynacom line:1139 LOG: duration: 2.634 ms bind S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:34.855 EEST SMA amantzio at dynacom line:1140 LOG: execute S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.459 EEST SMA amantzio at dynacom line:1141 LOG: duration: 603.588 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.482 EEST SMA amantzio at dynacom line:1142 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.482 EEST SMA amantzio at dynacom line:1143 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.482 EEST SMA amantzio at dynacom line:1144 LOG: duration: 0.007 ms bind S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.482 EEST SMA amantzio at dynacom line:1145 LOG: execute S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.482 EEST SMA amantzio at dynacom line:1146 LOG: duration: 0.012 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.482 EEST SMA amantzio at dynacom line:1147 LOG: duration: 0.055 ms bind S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.482 EEST SMA amantzio at dynacom line:1148 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.482 EEST SMA amantzio at dynacom line:1149 LOG: execute S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.482 EEST SMA amantzio at dynacom line:1150 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.482 EEST SMA amantzio at dynacom line:1151 LOG: duration: 0.044 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.483 EEST SMA amantzio at dynacom line:1152 LOG: duration: 0.154 ms parse S_9: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.483 EEST SMA amantzio at dynacom line:1153 LOG: duration: 0.162 ms bind S_9: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.483 EEST SMA amantzio at dynacom line:1154 DETAIL: Parameters: $1 = 'sys5', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767517', $9 = '214767517', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.483 EEST SMA amantzio at dynacom line:1155 LOG: execute S_9: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.483 EEST SMA amantzio at dynacom line:1156 DETAIL: Parameters: $1 = 'sys5', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767517', $9 = '214767517', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.483 EEST SMA amantzio at dynacom line:1157 LOG: duration: 0.464 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.484 EEST SMA amantzio at dynacom line:1158 LOG: duration: 0.018 ms parse S_10: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.484 EEST SMA amantzio at dynacom line:1159 LOG: duration: 0.013 ms bind S_10: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.484 EEST SMA amantzio at dynacom line:1160 LOG: execute S_10: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.484 EEST SMA amantzio at dynacom line:1161 LOG: duration: 0.005 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.484 EEST SMA amantzio at dynacom line:1162 LOG: duration: 0.036 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767522,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.484 EEST SMA amantzio at dynacom line:1163 LOG: duration: 0.106 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767522,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.484 EEST SMA amantzio at dynacom line:1164 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767522,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.484 EEST SMA amantzio at dynacom line:1165 LOG: duration: 0.025 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.510 EEST SMA amantzio at dynacom line:1166 LOG: duration: 0.015 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.510 EEST SMA amantzio at dynacom line:1167 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.512 EEST SMA amantzio at dynacom line:1168 LOG: duration: 2.034 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.655 EEST SMA amantzio at dynacom line:1169 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.655 EEST SMA amantzio at dynacom line:1170 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.655 EEST SMA amantzio at dynacom line:1171 LOG: duration: 0.045 ms bind S_5: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:35.655 EEST SMA amantzio at dynacom line:1172 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.202 EEST SMA amantzio at dynacom line:1173 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.202 EEST SMA amantzio at dynacom line:1174 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.205 EEST SMA amantzio at dynacom line:1175 LOG: duration: 2.461 ms bind S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.205 EEST SMA amantzio at dynacom line:1176 LOG: execute S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.890 EEST SMA amantzio at dynacom line:1177 LOG: duration: 685.587 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.910 EEST SMA amantzio at dynacom line:1178 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.910 EEST SMA amantzio at dynacom line:1179 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1180 LOG: duration: 0.008 ms bind S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1181 LOG: execute S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1182 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1183 LOG: duration: 0.072 ms bind S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1184 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1185 LOG: execute S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1186 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1187 LOG: duration: 0.055 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1188 LOG: duration: 0.047 ms bind S_6: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1189 LOG: execute S_6: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1190 LOG: duration: 0.035 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1191 LOG: duration: 0.028 ms bind S_7: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1192 LOG: execute S_7: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.911 EEST SMA amantzio at dynacom line:1193 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.912 EEST SMA amantzio at dynacom line:1194 LOG: duration: 0.828 ms bind S_8: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.912 EEST SMA amantzio at dynacom line:1195 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.912 EEST SMA amantzio at dynacom line:1196 LOG: execute S_8: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.912 EEST SMA amantzio at dynacom line:1197 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.912 EEST SMA amantzio at dynacom line:1198 LOG: duration: 0.039 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.913 EEST SMA amantzio at dynacom line:1199 LOG: duration: 0.037 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.913 EEST SMA amantzio at dynacom line:1200 LOG: duration: 0.012 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.913 EEST SMA amantzio at dynacom line:1201 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.913 EEST SMA amantzio at dynacom line:1202 LOG: duration: 0.014 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.913 EEST SMA amantzio at dynacom line:1203 LOG: duration: 0.041 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.913 EEST SMA amantzio at dynacom line:1204 LOG: duration: 0.079 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.913 EEST SMA amantzio at dynacom line:1205 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.913 EEST SMA amantzio at dynacom line:1206 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.913 EEST SMA amantzio at dynacom line:1207 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.965 EEST SMA amantzio at dynacom line:1208 LOG: duration: 52.062 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.966 EEST SMA amantzio at dynacom line:1209 LOG: duration: 0.151 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.967 EEST SMA amantzio at dynacom line:1210 LOG: duration: 0.780 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.967 EEST SMA amantzio at dynacom line:1211 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.967 EEST SMA amantzio at dynacom line:1212 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.967 EEST SMA amantzio at dynacom line:1213 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.967 EEST SMA amantzio at dynacom line:1214 LOG: duration: 0.041 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.967 EEST SMA amantzio at dynacom line:1215 LOG: duration: 0.032 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.967 EEST SMA amantzio at dynacom line:1216 LOG: duration: 0.068 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.967 EEST SMA amantzio at dynacom line:1217 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.967 EEST SMA amantzio at dynacom line:1218 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:38.967 EEST SMA amantzio at dynacom line:1219 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.019 EEST SMA amantzio at dynacom line:1220 LOG: duration: 52.440 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.020 EEST SMA amantzio at dynacom line:1221 LOG: duration: 0.129 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.021 EEST SMA amantzio at dynacom line:1222 LOG: duration: 0.682 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.021 EEST SMA amantzio at dynacom line:1223 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.021 EEST SMA amantzio at dynacom line:1224 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.021 EEST SMA amantzio at dynacom line:1225 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.021 EEST SMA amantzio at dynacom line:1226 LOG: duration: 0.038 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.021 EEST SMA amantzio at dynacom line:1227 LOG: duration: 0.033 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.021 EEST SMA amantzio at dynacom line:1228 LOG: duration: 0.078 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.021 EEST SMA amantzio at dynacom line:1229 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.021 EEST SMA amantzio at dynacom line:1230 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.021 EEST SMA amantzio at dynacom line:1231 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.066 EEST SMA amantzio at dynacom line:1232 LOG: duration: 45.059 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.067 EEST SMA amantzio at dynacom line:1233 LOG: duration: 0.127 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.068 EEST SMA amantzio at dynacom line:1234 LOG: duration: 0.704 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.068 EEST SMA amantzio at dynacom line:1235 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.068 EEST SMA amantzio at dynacom line:1236 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.068 EEST SMA amantzio at dynacom line:1237 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.068 EEST SMA amantzio at dynacom line:1238 LOG: duration: 0.039 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.068 EEST SMA amantzio at dynacom line:1239 LOG: duration: 0.026 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.068 EEST SMA amantzio at dynacom line:1240 LOG: duration: 0.059 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.068 EEST SMA amantzio at dynacom line:1241 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.068 EEST SMA amantzio at dynacom line:1242 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.068 EEST SMA amantzio at dynacom line:1243 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.112 EEST SMA amantzio at dynacom line:1244 LOG: duration: 44.348 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.113 EEST SMA amantzio at dynacom line:1245 LOG: duration: 0.184 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.114 EEST SMA amantzio at dynacom line:1246 LOG: duration: 0.713 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.114 EEST SMA amantzio at dynacom line:1247 DETAIL: Parameters: $1 = '214767521'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.114 EEST SMA amantzio at dynacom line:1248 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.114 EEST SMA amantzio at dynacom line:1249 DETAIL: Parameters: $1 = '214767521'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.114 EEST SMA amantzio at dynacom line:1250 LOG: duration: 0.041 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.114 EEST SMA amantzio at dynacom line:1251 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.114 EEST SMA amantzio at dynacom line:1252 LOG: duration: 0.069 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.114 EEST SMA amantzio at dynacom line:1253 DETAIL: Parameters: $1 = '214767521'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.114 EEST SMA amantzio at dynacom line:1254 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.114 EEST SMA amantzio at dynacom line:1255 DETAIL: Parameters: $1 = '214767521'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.161 EEST SMA amantzio at dynacom line:1256 LOG: duration: 46.572 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.162 EEST SMA amantzio at dynacom line:1257 LOG: duration: 0.124 ms parse S_11: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.162 EEST SMA amantzio at dynacom line:1258 LOG: duration: 0.628 ms bind S_11: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.162 EEST SMA amantzio at dynacom line:1259 DETAIL: Parameters: $1 = '214767522'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.162 EEST SMA amantzio at dynacom line:1260 LOG: execute S_11: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.162 EEST SMA amantzio at dynacom line:1261 DETAIL: Parameters: $1 = '214767522'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.162 EEST SMA amantzio at dynacom line:1262 LOG: duration: 0.037 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.162 EEST SMA amantzio at dynacom line:1263 LOG: duration: 0.031 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.163 EEST SMA amantzio at dynacom line:1264 LOG: duration: 0.077 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.163 EEST SMA amantzio at dynacom line:1265 DETAIL: Parameters: $1 = '214767522'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.163 EEST SMA amantzio at dynacom line:1266 LOG: execute <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.163 EEST SMA amantzio at dynacom line:1267 DETAIL: Parameters: $1 = '214767522'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.209 EEST SMA amantzio at dynacom line:1268 LOG: duration: 46.755 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.210 EEST SMA amantzio at dynacom line:1269 LOG: duration: 0.017 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.210 EEST SMA amantzio at dynacom line:1270 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.210 EEST SMA amantzio at dynacom line:1271 LOG: duration: 0.047 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.318 EEST SMA amantzio at dynacom line:1272 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.318 EEST SMA amantzio at dynacom line:1273 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.318 EEST SMA amantzio at dynacom line:1274 LOG: duration: 0.052 ms bind S_5: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:39.318 EEST SMA amantzio at dynacom line:1275 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:44.324 EEST SMA amantzio at dynacom line:1276 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:44.324 EEST SMA amantzio at dynacom line:1277 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:44.327 EEST SMA amantzio at dynacom line:1278 LOG: duration: 2.719 ms bind S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:44.327 EEST SMA amantzio at dynacom line:1279 LOG: execute S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.019 EEST SMA amantzio at dynacom line:1280 LOG: duration: 692.260 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.038 EEST SMA amantzio at dynacom line:1281 LOG: duration: 0.018 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.038 EEST SMA amantzio at dynacom line:1282 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.038 EEST SMA amantzio at dynacom line:1283 LOG: duration: 0.007 ms bind S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.038 EEST SMA amantzio at dynacom line:1284 LOG: execute S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.038 EEST SMA amantzio at dynacom line:1285 LOG: duration: 0.016 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.038 EEST SMA amantzio at dynacom line:1286 LOG: duration: 0.053 ms bind S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.038 EEST SMA amantzio at dynacom line:1287 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.038 EEST SMA amantzio at dynacom line:1288 LOG: execute S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.038 EEST SMA amantzio at dynacom line:1289 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.038 EEST SMA amantzio at dynacom line:1290 LOG: duration: 0.041 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.039 EEST SMA amantzio at dynacom line:1291 LOG: duration: 0.209 ms bind S_9: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.039 EEST SMA amantzio at dynacom line:1292 DETAIL: Parameters: $1 = 'sys6', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767517', $9 = '214767517', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.039 EEST SMA amantzio at dynacom line:1293 LOG: execute S_9: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.039 EEST SMA amantzio at dynacom line:1294 DETAIL: Parameters: $1 = 'sys6', $2 = NULL, $3 = '214748365', $4 = NULL, $5 = NULL, $6 = NULL, $7 = NULL, $8 = '214767517', $9 = '214767517', $10 = NULL, $11 = NULL, $12 = NULL, $13 = '0', $14 = '0', $15 = NULL, $16 = NULL
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.039 EEST SMA amantzio at dynacom line:1295 LOG: duration: 0.498 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.039 EEST SMA amantzio at dynacom line:1296 LOG: duration: 0.012 ms bind S_10: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.039 EEST SMA amantzio at dynacom line:1297 LOG: execute S_10: select currval('machdefs_defid_seq')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.039 EEST SMA amantzio at dynacom line:1298 LOG: duration: 0.008 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.040 EEST SMA amantzio at dynacom line:1299 LOG: duration: 0.051 ms parse <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767523,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.040 EEST SMA amantzio at dynacom line:1300 LOG: duration: 0.117 ms bind <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767523,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.040 EEST SMA amantzio at dynacom line:1301 LOG: execute <unnamed>: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767523,it2.machtypecount from items it2 where it2.defid=214767517
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.040 EEST SMA amantzio at dynacom line:1302 LOG: duration: 0.031 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.043 EEST SMA amantzio at dynacom line:1303 LOG: duration: 0.005 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.043 EEST SMA amantzio at dynacom line:1304 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.076 EEST SMA amantzio at dynacom line:1305 LOG: duration: 33.232 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.268 EEST SMA amantzio at dynacom line:1306 LOG: duration: 0.019 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.268 EEST SMA amantzio at dynacom line:1307 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.269 EEST SMA amantzio at dynacom line:1308 LOG: duration: 0.046 ms bind S_5: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:45.269 EEST SMA amantzio at dynacom line:1309 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:46.938 EEST SMA amantzio at dynacom line:1310 LOG: duration: 0.016 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:46.938 EEST SMA amantzio at dynacom line:1311 LOG: duration: 0.004 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:46.941 EEST SMA amantzio at dynacom line:1312 LOG: duration: 2.344 ms bind S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:46.941 EEST SMA amantzio at dynacom line:1313 LOG: execute S_2: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.549 EEST SMA amantzio at dynacom line:1314 LOG: duration: 608.568 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.572 EEST SMA amantzio at dynacom line:1315 LOG: duration: 0.020 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.572 EEST SMA amantzio at dynacom line:1316 LOG: duration: 0.005 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.580 EEST SMA amantzio at dynacom line:1317 LOG: duration: 0.016 ms bind S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.580 EEST SMA amantzio at dynacom line:1318 LOG: execute S_3: BEGIN
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.580 EEST SMA amantzio at dynacom line:1319 LOG: duration: 0.017 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.580 EEST SMA amantzio at dynacom line:1320 LOG: duration: 0.065 ms bind S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.580 EEST SMA amantzio at dynacom line:1321 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.580 EEST SMA amantzio at dynacom line:1322 LOG: execute S_4: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.580 EEST SMA amantzio at dynacom line:1323 DETAIL: Parameters: $1 = '214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.580 EEST SMA amantzio at dynacom line:1324 LOG: duration: 0.058 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.581 EEST SMA amantzio at dynacom line:1325 LOG: duration: 0.061 ms bind S_6: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.581 EEST SMA amantzio at dynacom line:1326 LOG: execute S_6: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.581 EEST SMA amantzio at dynacom line:1327 LOG: duration: 0.039 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.581 EEST SMA amantzio at dynacom line:1328 LOG: duration: 0.026 ms bind S_7: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.581 EEST SMA amantzio at dynacom line:1329 LOG: execute S_7: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.581 EEST SMA amantzio at dynacom line:1330 LOG: duration: 0.014 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA amantzio at dynacom line:1331 LOG: duration: 0.741 ms bind S_8: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA amantzio at dynacom line:1332 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA amantzio at dynacom line:1333 LOG: execute S_8: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA amantzio at dynacom line:1334 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA amantzio at dynacom line:1335 LOG: duration: 0.036 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA amantzio at dynacom line:1336 LOG: duration: 0.037 ms parse pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA amantzio at dynacom line:1337 LOG: duration: 0.011 ms bind pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA amantzio at dynacom line:1338 LOG: execute pgpool59728/pgpool59728: SELECT current_setting('transaction_isolation')
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA amantzio at dynacom line:1339 LOG: duration: 0.007 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA amantzio at dynacom line:1340 LOG: duration: 0.042 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA amantzio at dynacom line:1341 LOG: duration: 0.070 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.582 EEST SMA amantzio at dynacom line:1342 DETAIL: Parameters: $1 = '214767517'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.583 EEST SMA amantzio at dynacom line:1343 LOG: duration: 0.091 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.583 EEST SMA amantzio at dynacom line:1344 LOG: duration: 0.514 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.583 EEST SMA amantzio at dynacom line:1345 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.583 EEST SMA amantzio at dynacom line:1346 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.583 EEST SMA amantzio at dynacom line:1347 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.583 EEST SMA amantzio at dynacom line:1348 LOG: duration: 0.029 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.584 EEST SMA amantzio at dynacom line:1349 LOG: duration: 0.030 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.584 EEST SMA amantzio at dynacom line:1350 LOG: duration: 0.066 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.584 EEST SMA amantzio at dynacom line:1351 DETAIL: Parameters: $1 = '214767518'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.584 EEST SMA amantzio at dynacom line:1352 LOG: duration: 0.069 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.585 EEST SMA amantzio at dynacom line:1353 LOG: duration: 0.715 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.585 EEST SMA amantzio at dynacom line:1354 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.585 EEST SMA amantzio at dynacom line:1355 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.585 EEST SMA amantzio at dynacom line:1356 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.585 EEST SMA amantzio at dynacom line:1357 LOG: duration: 0.036 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.585 EEST SMA amantzio at dynacom line:1358 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.585 EEST SMA amantzio at dynacom line:1359 LOG: duration: 0.077 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.585 EEST SMA amantzio at dynacom line:1360 DETAIL: Parameters: $1 = '214767519'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.586 EEST SMA amantzio at dynacom line:1361 LOG: duration: 0.057 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.586 EEST SMA amantzio at dynacom line:1362 LOG: duration: 0.487 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.586 EEST SMA amantzio at dynacom line:1363 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.586 EEST SMA amantzio at dynacom line:1364 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.586 EEST SMA amantzio at dynacom line:1365 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.586 EEST SMA amantzio at dynacom line:1366 LOG: duration: 0.025 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.586 EEST SMA amantzio at dynacom line:1367 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.586 EEST SMA amantzio at dynacom line:1368 LOG: duration: 0.065 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.586 EEST SMA amantzio at dynacom line:1369 DETAIL: Parameters: $1 = '214767520'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.587 EEST SMA amantzio at dynacom line:1370 LOG: duration: 0.066 ms parse <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.587 EEST SMA amantzio at dynacom line:1371 LOG: duration: 0.426 ms bind <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.587 EEST SMA amantzio at dynacom line:1372 DETAIL: Parameters: $1 = '214767521'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.587 EEST SMA amantzio at dynacom line:1373 LOG: execute <unnamed>: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.587 EEST SMA amantzio at dynacom line:1374 DETAIL: Parameters: $1 = '214767521'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.587 EEST SMA amantzio at dynacom line:1375 LOG: duration: 0.022 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.587 EEST SMA amantzio at dynacom line:1376 LOG: duration: 0.029 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.588 EEST SMA amantzio at dynacom line:1377 LOG: duration: 0.064 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.588 EEST SMA amantzio at dynacom line:1378 DETAIL: Parameters: $1 = '214767521'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.588 EEST SMA amantzio at dynacom line:1379 LOG: duration: 0.057 ms parse S_12: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.588 EEST SMA amantzio at dynacom line:1380 LOG: duration: 0.423 ms bind S_12: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.588 EEST SMA amantzio at dynacom line:1381 DETAIL: Parameters: $1 = '214767522'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.588 EEST SMA amantzio at dynacom line:1382 LOG: execute S_12: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.588 EEST SMA amantzio at dynacom line:1383 DETAIL: Parameters: $1 = '214767522'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.588 EEST SMA amantzio at dynacom line:1384 LOG: duration: 0.021 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.589 EEST SMA amantzio at dynacom line:1385 LOG: duration: 0.024 ms parse <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.589 EEST SMA amantzio at dynacom line:1386 LOG: duration: 0.058 ms bind <unnamed>: select defid from machdefs where parents[1]=$1 order by description,partid
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.589 EEST SMA amantzio at dynacom line:1387 DETAIL: Parameters: $1 = '214767522'
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.589 EEST SMA amantzio at dynacom line:1388 LOG: duration: 0.006 ms bind S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.589 EEST SMA amantzio at dynacom line:1389 LOG: execute S_1: COMMIT
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.589 EEST SMA amantzio at dynacom line:1390 LOG: duration: 0.041 ms
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.924 EEST SMA amantzio at dynacom line:1391 LOG: duration: 0.022 ms parse <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.924 EEST SMA amantzio at dynacom line:1392 LOG: duration: 0.006 ms bind <unnamed>:
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.925 EEST SMA amantzio at dynacom line:1393 LOG: duration: 0.048 ms bind S_5: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
127.0.0.1(15112) [59852] 6814a7ed.e9cc 2025-05-02 14:10:47.925 EEST SMA amantzio at dynacom line:1394 DETAIL: Parameters: $1 = 'Achilleas Mantzios', $2 = '*'
-------------- next part --------------
[59667] 2025-05-02 14:09:04.497 main [No Connection]@[No Connection] line:4LOG: health_check_stats_shared_memory_size: requested size: 12288
[59667] 2025-05-02 14:09:04.497 main [No Connection]@[No Connection] line:5LOG: memory cache initialized
[59667] 2025-05-02 14:09:04.497 main [No Connection]@[No Connection] line:6DETAIL: memcache blocks :64
[59667] 2025-05-02 14:09:04.497 main [No Connection]@[No Connection] line:7LOG: allocating (144847952) bytes of shared memory segment
[59667] 2025-05-02 14:09:04.497 main [No Connection]@[No Connection] line:8LOG: allocating shared memory segment of size: 144847952
[59667] 2025-05-02 14:09:04.553 main [No Connection]@[No Connection] line:9LOG: health_check_stats_shared_memory_size: requested size: 12288
[59667] 2025-05-02 14:09:04.553 main [No Connection]@[No Connection] line:10LOG: health_check_stats_shared_memory_size: requested size: 12288
[59667] 2025-05-02 14:09:04.553 main [No Connection]@[No Connection] line:11LOG: memory cache initialized
[59667] 2025-05-02 14:09:04.553 main [No Connection]@[No Connection] line:12DETAIL: memcache blocks :64
[59667] 2025-05-02 14:09:04.554 main [No Connection]@[No Connection] line:13LOG: pool_discard_oid_maps: discarded memqcache oid maps
[59667] 2025-05-02 14:09:04.563 main [No Connection]@[No Connection] line:14LOG: create socket files[0]: /tmp/.s.PGSQL.9999
[59667] 2025-05-02 14:09:04.563 main [No Connection]@[No Connection] line:15LOG: listen address[0]: *
[59667] 2025-05-02 14:09:04.563 main [No Connection]@[No Connection] line:16LOG: Setting up socket for :::9999
[59667] 2025-05-02 14:09:04.563 main [No Connection]@[No Connection] line:17LOG: Setting up socket for 0.0.0.0:9999
[59667] 2025-05-02 14:09:04.620 main [No Connection]@[No Connection] line:18LOG: find_primary_node_repeatedly: waiting for finding a primary node
[59667] 2025-05-02 14:09:04.620 main [No Connection]@[No Connection] line:19LOG: create socket files[0]: /tmp/.s.PGSQL.9898
[59667] 2025-05-02 14:09:04.620 main [No Connection]@[No Connection] line:20LOG: listen address[0]: localhost
[59667] 2025-05-02 14:09:04.620 main [No Connection]@[No Connection] line:21LOG: Setting up socket for ::1:9898
[59667] 2025-05-02 14:09:04.620 main [No Connection]@[No Connection] line:22LOG: Setting up socket for 127.0.0.1:9898
[59734] 2025-05-02 14:09:04.621 pcp_main [No Connection]@[No Connection] line:1LOG: PCP process: 59734 started
[59735] 2025-05-02 14:09:04.622 sr_check_worker [No Connection]@[No Connection] line:1LOG: process started
[59736] 2025-05-02 14:09:04.623 health_check [No Connection]@[No Connection] line:1LOG: process started
[59667] 2025-05-02 14:09:04.674 main [No Connection]@[No Connection] line:23LOG: pgpool-II successfully started. version 4.6.0 (chirikoboshi)
[59728] 2025-05-02 14:09:33.255 child [No Connection]@[No Connection] line:1LOG: new connection received
[59728] 2025-05-02 14:09:33.255 child [No Connection]@[No Connection] line:2DETAIL: connecting host=127.0.0.1 port=61966
[59728] 2025-05-02 14:09:33.283 [unknown] amantzio at dynacom line:3LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:33.283 [unknown] amantzio at dynacom line:4DETAIL: statement: "", query: "SET extra_float_digits = 3"
[59728] 2025-05-02 14:09:33.283 [unknown] amantzio at dynacom line:5LOG: DB node id: 0 backend pid: 59852 statement: SELECT pg_catalog.version()
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:6LOG: DB node id: 0 backend pid: 59852 statement: Parse: SET extra_float_digits = 3
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:7LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:8DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:9LOG: DB node id: 0 backend pid: 59852 statement: Bind: SET extra_float_digits = 3
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:10LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:11DETAIL: portal: ""
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:12LOG: statement: SET extra_float_digits = 3
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:13LOG: DB node id: 0 backend pid: 59852 statement: Execute: SET extra_float_digits = 3
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:14LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:15LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:16DETAIL: statement: "", query: "SET application_name = 'PostgreSQL JDBC Driver'"
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:17LOG: DB node id: 0 backend pid: 59852 statement: Parse: SET application_name = 'PostgreSQL JDBC Driver'
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:18LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:19DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:20LOG: DB node id: 0 backend pid: 59852 statement: Bind: SET application_name = 'PostgreSQL JDBC Driver'
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:21LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:22DETAIL: portal: ""
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:23LOG: statement: SET application_name = 'PostgreSQL JDBC Driver'
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:24LOG: DB node id: 0 backend pid: 59852 statement: Execute: SET application_name = 'PostgreSQL JDBC Driver'
[59728] 2025-05-02 14:09:33.284 [unknown] amantzio at dynacom line:25LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:26LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:27DETAIL: statement: "", query: "SHOW TRANSACTION ISOLATION LEVEL"
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:28LOG: DB node id: 0 backend pid: 59852 statement: Parse: SHOW TRANSACTION ISOLATION LEVEL
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:29LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:30DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:31LOG: DB node id: 0 backend pid: 59852 statement: Bind: SHOW TRANSACTION ISOLATION LEVEL
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:32LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:33DETAIL: portal: ""
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:34LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:35LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:36DETAIL: portal: ""
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:37LOG: statement: SHOW TRANSACTION ISOLATION LEVEL
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:38LOG: DB node id: 0 backend pid: 59852 statement: Execute: SHOW TRANSACTION ISOLATION LEVEL
[59728] 2025-05-02 14:09:33.300 PostgreSQL JDBC Driver amantzio at dynacom line:39LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:40LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:41DETAIL: statement: "", query: "SET application_name to 'SMA '"
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:42LOG: DB node id: 0 backend pid: 59852 statement: Parse: SET application_name to 'SMA '
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:43LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:44DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:45LOG: DB node id: 0 backend pid: 59852 statement: Bind: SET application_name to 'SMA '
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:46LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:47DETAIL: portal: ""
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:48LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:49LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:50DETAIL: portal: ""
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:51LOG: statement: SET application_name to 'SMA '
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:52LOG: DB node id: 0 backend pid: 59852 statement: Execute: SET application_name to 'SMA '
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:53LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:33.309 PostgreSQL JDBC Driver amantzio at dynacom line:54DETAIL: statement: "", query: "select set_search_path('bdynacom,epaybdynacom,epay')"
[59728] 2025-05-02 14:09:33.310 PostgreSQL JDBC Driver amantzio at dynacom line:55LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:56LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'set_search_path' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:57LOG: DB node id: 0 backend pid: 59852 statement: Parse: select set_search_path('bdynacom,epaybdynacom,epay')
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:58LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:59DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:60LOG: DB node id: 0 backend pid: 59852 statement: Bind: select set_search_path('bdynacom,epaybdynacom,epay')
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:61LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:62DETAIL: portal: ""
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:63LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:64LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:65DETAIL: portal: ""
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:66LOG: statement: select set_search_path('bdynacom,epaybdynacom,epay')
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:67LOG: DB node id: 0 backend pid: 59852 statement: Execute: select set_search_path('bdynacom,epaybdynacom,epay')
[59728] 2025-05-02 14:09:33.311 PostgreSQL JDBC Driver amantzio at dynacom line:68LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:33.329 SMA amantzio at dynacom line:69LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:33.329 SMA amantzio at dynacom line:70DETAIL: statement: "", query: "SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1"
[59728] 2025-05-02 14:09:33.330 SMA amantzio at dynacom line:71LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"smanews"')::oid, 0)
[59728] 2025-05-02 14:09:33.330 SMA amantzio at dynacom line:72LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
[59728] 2025-05-02 14:09:33.330 SMA amantzio at dynacom line:73LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:33.331 SMA amantzio at dynacom line:74LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'smanews' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:75LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"smanews"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:76LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'random' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:77LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:78LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:79DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:80LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:81LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:82DETAIL: portal: ""
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:83LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:84LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:85DETAIL: portal: ""
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:86LOG: statement: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:87LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT header from smanews where appname = 'MOTD' order by random() LIMIT 1
[59728] 2025-05-02 14:09:33.332 SMA amantzio at dynacom line:88LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:89LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:90DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:91LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:92LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:93DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:94LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:95LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:96DETAIL: portal: ""
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:97LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:98LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:99DETAIL: portal: ""
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:100LOG: statement:
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:101LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:34.903 SMA amantzio at dynacom line:102LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:34.905 SMA amantzio at dynacom line:103LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:34.905 SMA amantzio at dynacom line:104DETAIL: statement: "", query: "select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)"
[59728] 2025-05-02 14:09:34.905 SMA amantzio at dynacom line:105LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff_works_in"')::oid, 0)
[59728] 2025-05-02 14:09:34.905 SMA amantzio at dynacom line:106LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"company_stuff"')::oid, 0)
[59728] 2025-05-02 14:09:34.905 SMA amantzio at dynacom line:107LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"company_dept_instance"')::oid, 0)
[59728] 2025-05-02 14:09:34.905 SMA amantzio at dynacom line:108LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff_works_in' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:34.905 SMA amantzio at dynacom line:109LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_stuff' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:34.906 SMA amantzio at dynacom line:110LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'company_dept_instance' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:34.906 SMA amantzio at dynacom line:111LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:34.906 SMA amantzio at dynacom line:112LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:34.906 SMA amantzio at dynacom line:113LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:34.907 SMA amantzio at dynacom line:114LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:34.907 SMA amantzio at dynacom line:115LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:34.907 SMA amantzio at dynacom line:116LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:34.907 SMA amantzio at dynacom line:117LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:34.907 SMA amantzio at dynacom line:118LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:34.907 SMA amantzio at dynacom line:119LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:120LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff_works_in"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:121LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_stuff"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:122LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"company_dept_instance"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:123LOG: DB node id: 0 backend pid: 59852 statement: Parse: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:124LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:125DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:126LOG: DB node id: 0 backend pid: 59852 statement: Bind: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:127LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:128DETAIL: portal: ""
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:129LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:130LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:131DETAIL: portal: ""
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:132LOG: statement: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:133LOG: DB node id: 0 backend pid: 59852 statement: Execute: select cdi.name as manager_in from company_stuff_works_in cswi, company_stuff cs, company_dept_instance cdi where cswi.stuffid=cs.id and cswi.deptinstid=cdi.id and cs.ldap_cn=$1 and (isa_head or isa_deputy)
[59728] 2025-05-02 14:09:34.908 SMA amantzio at dynacom line:134LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:34.910 SMA amantzio at dynacom line:135LOG: DB node id: 0 backend pid: 59852 statement: SELECT oid FROM pg_catalog.pg_database WHERE datname = 'dynacom'
[59728] 2025-05-02 14:09:35.170 SMA amantzio at dynacom line:136LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:35.170 SMA amantzio at dynacom line:137DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:35.170 SMA amantzio at dynacom line:138LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:35.170 SMA amantzio at dynacom line:139LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:35.171 SMA amantzio at dynacom line:140DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:35.171 SMA amantzio at dynacom line:141LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:35.171 SMA amantzio at dynacom line:142LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:35.171 SMA amantzio at dynacom line:143DETAIL: portal: ""
[59728] 2025-05-02 14:09:35.171 SMA amantzio at dynacom line:144LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:35.171 SMA amantzio at dynacom line:145LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:35.171 SMA amantzio at dynacom line:146DETAIL: portal: ""
[59728] 2025-05-02 14:09:35.171 SMA amantzio at dynacom line:147LOG: statement:
[59728] 2025-05-02 14:09:35.171 SMA amantzio at dynacom line:148LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:35.171 SMA amantzio at dynacom line:149LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:35.171 SMA amantzio at dynacom line:150LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:35.171 SMA amantzio at dynacom line:151DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[59728] 2025-05-02 14:09:35.172 SMA amantzio at dynacom line:152LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"machdefs"')::oid, 0)
[59728] 2025-05-02 14:09:35.172 SMA amantzio at dynacom line:153LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"items"')::oid, 0)
[59728] 2025-05-02 14:09:35.172 SMA amantzio at dynacom line:154LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"vessels"')::oid, 0)
[59728] 2025-05-02 14:09:35.172 SMA amantzio at dynacom line:155LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"machtypes"')::oid, 0)
[59728] 2025-05-02 14:09:35.172 SMA amantzio at dynacom line:156LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"machtypesclasses"')::oid, 0)
[59728] 2025-05-02 14:09:35.172 SMA amantzio at dynacom line:157LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"makers"')::oid, 0)
[59728] 2025-05-02 14:09:35.173 SMA amantzio at dynacom line:158LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"licensees"')::oid, 0)
[59728] 2025-05-02 14:09:35.173 SMA amantzio at dynacom line:159LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"machclasses"')::oid, 0)
[59728] 2025-05-02 14:09:35.173 SMA amantzio at dynacom line:160LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
[59728] 2025-05-02 14:09:35.174 SMA amantzio at dynacom line:161LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
[59728] 2025-05-02 14:09:35.174 SMA amantzio at dynacom line:162LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
[59728] 2025-05-02 14:09:35.174 SMA amantzio at dynacom line:163LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
[59728] 2025-05-02 14:09:35.175 SMA amantzio at dynacom line:164LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timestamptz';
[59728] 2025-05-02 14:09:35.175 SMA amantzio at dynacom line:165LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_type AS t, pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.prorettype = t.oid AND t.typname = 'timetz';
[59728] 2025-05-02 14:09:35.175 SMA amantzio at dynacom line:166LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machdefs' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:35.176 SMA amantzio at dynacom line:167LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'items' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:35.176 SMA amantzio at dynacom line:168LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'vessels' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:35.176 SMA amantzio at dynacom line:169LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypes' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:35.177 SMA amantzio at dynacom line:170LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machtypesclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:35.177 SMA amantzio at dynacom line:171LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'makers' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:35.177 SMA amantzio at dynacom line:172LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'licensees' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:35.178 SMA amantzio at dynacom line:173LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'machclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:35.178 SMA amantzio at dynacom line:174LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:35.178 SMA amantzio at dynacom line:175LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:35.179 SMA amantzio at dynacom line:176LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:35.179 SMA amantzio at dynacom line:177LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:35.179 SMA amantzio at dynacom line:178LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:35.179 SMA amantzio at dynacom line:179LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:35.179 SMA amantzio at dynacom line:180LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:35.180 SMA amantzio at dynacom line:181LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:35.180 SMA amantzio at dynacom line:182LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:35.180 SMA amantzio at dynacom line:183LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:35.180 SMA amantzio at dynacom line:184LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:35.180 SMA amantzio at dynacom line:185LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:35.181 SMA amantzio at dynacom line:186LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:35.181 SMA amantzio at dynacom line:187LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:35.181 SMA amantzio at dynacom line:188LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:35.181 SMA amantzio at dynacom line:189LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:35.181 SMA amantzio at dynacom line:190LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:35.181 SMA amantzio at dynacom line:191LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:35.182 SMA amantzio at dynacom line:192LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"vessels"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:35.182 SMA amantzio at dynacom line:193LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:35.182 SMA amantzio at dynacom line:194LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:35.182 SMA amantzio at dynacom line:195LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:35.182 SMA amantzio at dynacom line:196LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:35.182 SMA amantzio at dynacom line:197LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:198LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'string_agg' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:199LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'level' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:200LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:201LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:202DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:203LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:204LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:205DETAIL: portal: ""
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:206LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:207LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:208DETAIL: portal: ""
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:209LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:210LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:35.183 SMA amantzio at dynacom line:211LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:212LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:213DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:214LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:215LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:216DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:217LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:218LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:219DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:220LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:221LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:222DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:223LOG: statement:
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:224LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:36.215 SMA amantzio at dynacom line:225LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:226LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:227DETAIL: statement: "", query: "BEGIN"
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:228LOG: DB node id: 0 backend pid: 59852 statement: Parse: BEGIN
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:229LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:230DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:231LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:232LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:233DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:234LOG: statement: BEGIN
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:235LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:236LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:237DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:238LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypes"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:36.218 SMA amantzio at dynacom line:239LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machtypesclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:36.219 SMA amantzio at dynacom line:240LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:36.219 SMA amantzio at dynacom line:241LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:36.219 SMA amantzio at dynacom line:242LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.219 SMA amantzio at dynacom line:243DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.219 SMA amantzio at dynacom line:244LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:36.219 SMA amantzio at dynacom line:245LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.219 SMA amantzio at dynacom line:246DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.220 SMA amantzio at dynacom line:247LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.220 SMA amantzio at dynacom line:248LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.220 SMA amantzio at dynacom line:249DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.220 SMA amantzio at dynacom line:250LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:36.220 SMA amantzio at dynacom line:251LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:36.220 SMA amantzio at dynacom line:252LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:253LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:254DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:255LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"makers"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:256LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"licensees"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:257LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:258LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:259DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:260LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:261LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:262DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:263LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:264LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:265DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:266LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:267LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:09:36.221 SMA amantzio at dynacom line:268LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:269LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:270DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:271LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"machdefs"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:272LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:273LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:274DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:275LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:276LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:277DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:278LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:279LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:280DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:281LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:282LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:09:36.223 SMA amantzio at dynacom line:283LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.225 SMA amantzio at dynacom line:284LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.225 SMA amantzio at dynacom line:285DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:286LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"items"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:287LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:288LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:289DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:290LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:291LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:292DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:293LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:294LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:295DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:296LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:297LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:09:36.226 SMA amantzio at dynacom line:298LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:299LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:300DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:301LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:302LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:303DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:304LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:305LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:306DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:307LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:308LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:309DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:310LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:311LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:09:36.228 SMA amantzio at dynacom line:312LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.281 SMA amantzio at dynacom line:313LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.281 SMA amantzio at dynacom line:314DETAIL: statement: "S_1", query: "COMMIT"
[59728] 2025-05-02 14:09:36.281 SMA amantzio at dynacom line:315LOG: DB node id: 0 backend pid: 59852 statement: Parse: COMMIT
[59728] 2025-05-02 14:09:36.281 SMA amantzio at dynacom line:316LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.281 SMA amantzio at dynacom line:317DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:09:36.281 SMA amantzio at dynacom line:318LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:09:36.281 SMA amantzio at dynacom line:319LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.281 SMA amantzio at dynacom line:320DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.281 SMA amantzio at dynacom line:321LOG: statement: COMMIT
[59728] 2025-05-02 14:09:36.281 SMA amantzio at dynacom line:322LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:09:36.281 SMA amantzio at dynacom line:323LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:324LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:325DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:326LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:327LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:328DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:329LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:330LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:331DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:332LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:333LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:334DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:335LOG: statement:
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:336LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:36.718 SMA amantzio at dynacom line:337LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:338LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:339DETAIL: statement: "", query: "SHOW application_name"
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:340LOG: DB node id: 0 backend pid: 59852 statement: Parse: SHOW application_name
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:341LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:342DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:343LOG: DB node id: 0 backend pid: 59852 statement: Bind: SHOW application_name
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:344LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:345DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:346LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:347LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:348DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:349LOG: statement: SHOW application_name
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:350LOG: DB node id: 0 backend pid: 59852 statement: Execute: SHOW application_name
[59728] 2025-05-02 14:09:36.727 SMA amantzio at dynacom line:351LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:352LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:353DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:354LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:355LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:356DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:357LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:358LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:359DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:360LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:361LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:362DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:363LOG: statement:
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:364LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:36.748 SMA amantzio at dynacom line:365LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.761 SMA amantzio at dynacom line:366LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.761 SMA amantzio at dynacom line:367DETAIL: statement: "", query: "SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters"
[59728] 2025-05-02 14:09:36.761 SMA amantzio at dynacom line:368LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"system_parameters"')::oid, 0)
[59728] 2025-05-02 14:09:36.761 SMA amantzio at dynacom line:369LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'system_parameters' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:370LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:371LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:372LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:373LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"system_parameters"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:374LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:375LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:376DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:377LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:378LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:379DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:380LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:381LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:382DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:383LOG: statement: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:384LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT vat_accounts::text[] vat,forwarding_accounts::text[] forw FROM system_parameters
[59728] 2025-05-02 14:09:36.762 SMA amantzio at dynacom line:385LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:386LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:387DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:388LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:389LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:390DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:391LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:392LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:393DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:394LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:395LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:396DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:397LOG: statement:
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:398LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:36.988 SMA amantzio at dynacom line:399LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:400LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:401DETAIL: statement: "", query: "show application_name"
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:402LOG: DB node id: 0 backend pid: 59852 statement: Parse: show application_name
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:403LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:404DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:405LOG: DB node id: 0 backend pid: 59852 statement: Bind: show application_name
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:406LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:407DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:408LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:409LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:410DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:411LOG: statement: show application_name
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:412LOG: DB node id: 0 backend pid: 59852 statement: Execute: show application_name
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:413LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:414LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:415DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:416LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"fb_useroptions"')::oid, 0)
[59728] 2025-05-02 14:09:36.989 SMA amantzio at dynacom line:417LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'fb_useroptions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:36.990 SMA amantzio at dynacom line:418LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:36.990 SMA amantzio at dynacom line:419LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:36.990 SMA amantzio at dynacom line:420LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:421LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"fb_useroptions"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:422LOG: DB node id: 0 backend pid: 59852 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:423LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:424DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:425LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:426LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:427DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:428LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:429LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:430DETAIL: portal: ""
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:431LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:432LOG: DB node id: 0 backend pid: 59852 statement: Execute: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:36.991 SMA amantzio at dynacom line:433LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:434LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:435DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:436LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:437LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:438DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:439LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:440LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:441DETAIL: portal: ""
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:442LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:443LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:444DETAIL: portal: ""
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:445LOG: statement:
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:446LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:447LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:448LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:449DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:450LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:451LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:452DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:453LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:454LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:455DETAIL: portal: ""
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:456LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:457LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:458DETAIL: portal: ""
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:459LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:460LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:47.371 SMA amantzio at dynacom line:461LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:462LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:463DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:464LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:465LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:466DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:467LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:468LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:469DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:470LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:471LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:472DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:473LOG: statement:
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:474LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:475LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:476LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:477DETAIL: statement: "", query: "BEGIN"
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:478LOG: DB node id: 0 backend pid: 59852 statement: Parse: BEGIN
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:479LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:480DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:481LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:482LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:483DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:484LOG: statement: BEGIN
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:485LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:486LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:487DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:488LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:489LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:490DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:491LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:492LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:493DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:494LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:495LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:496DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.147 SMA amantzio at dynacom line:497LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:498LOG: fetch from memory cache
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:499DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:500LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:501LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:502DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:503LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:504LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:505DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:506LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:507LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:508DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:509LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:510LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:511DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.148 SMA amantzio at dynacom line:512LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:513LOG: fetch from memory cache
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:514DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:515LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:516LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:517DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:518LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:519LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:520DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:521LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:522LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:523DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:524LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:525LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:526DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:527LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:528LOG: fetch from memory cache
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:529DETAIL: query result fetched from cache. statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1 000000000000
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:530LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:531LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:532DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:533LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:534LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:535DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:536LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:537LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:538DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:539LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:540LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:541DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.149 SMA amantzio at dynacom line:542LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:543LOG: fetch from memory cache
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:544DETAIL: query result fetched from cache. statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1 000100010001000000040CCD179D0000
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:545LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:546LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:547DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:548LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:549LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:550DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:551LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:552LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:553DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:554LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:555LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:556DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.150 SMA amantzio at dynacom line:557LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:09:48.151 SMA amantzio at dynacom line:558LOG: fetch from memory cache
[59728] 2025-05-02 14:09:48.151 SMA amantzio at dynacom line:559DETAIL: query result fetched from cache. statement: select defid from machdefs where parents[1]=$1 order by description,partid 000100010001000000040CCD179D0000
[59728] 2025-05-02 14:09:48.151 SMA amantzio at dynacom line:560LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:48.151 SMA amantzio at dynacom line:561LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:48.151 SMA amantzio at dynacom line:562DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:09:48.151 SMA amantzio at dynacom line:563LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:09:48.151 SMA amantzio at dynacom line:564LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:48.151 SMA amantzio at dynacom line:565DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.151 SMA amantzio at dynacom line:566LOG: statement: COMMIT
[59728] 2025-05-02 14:09:48.151 SMA amantzio at dynacom line:567LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:09:48.151 SMA amantzio at dynacom line:568LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:569LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:570DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:571LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:572LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:573DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:574LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:575LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:576DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:577LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:578LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:579DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:580LOG: statement:
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:581LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:582LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:583LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:584DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:585LOG: DB node id: 0 backend pid: 59852 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:586LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:587DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:588LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:589LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:590DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:591LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:592LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:593DETAIL: portal: ""
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:594LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:595LOG: fetch from memory cache
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:596DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:09:48.607 SMA amantzio at dynacom line:597LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:598LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:599DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:600LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:601LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:602DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:603LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:604LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:605DETAIL: portal: ""
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:606LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:607LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:608DETAIL: portal: ""
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:609LOG: statement:
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:610LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:611LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:612LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:613DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:614LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:615LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:616DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:617LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:618LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:619DETAIL: portal: ""
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:620LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:621LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:622DETAIL: portal: ""
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:623LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:624LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:53.270 SMA amantzio at dynacom line:625LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:626LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:627DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:628LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:629LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:630DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:631LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:632LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:633DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:634LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:635LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:636DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:637LOG: statement:
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:638LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:639LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:640LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:641DETAIL: statement: "", query: "BEGIN"
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:642LOG: DB node id: 0 backend pid: 59852 statement: Parse: BEGIN
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:643LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:644DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:645LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:646LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:647DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:648LOG: statement: BEGIN
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:649LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:650LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:54.022 SMA amantzio at dynacom line:651DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:652LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:653LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:654DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:655LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:656LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:657DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:658LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:659LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:660DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:661LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:662LOG: fetch from memory cache
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:663DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:664LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:665LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:666DETAIL: statement: "", query: "SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767517"
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:667LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767517
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:668LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:669DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:670LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767517
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:671LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:672DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:673LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:674LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:675DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.023 SMA amantzio at dynacom line:676LOG: statement: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767517
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:677LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT distinct vsl.name from vessels vsl,items it where it.vslwhid = vsl.id and it.defid=214767517
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:678LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:679LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:680DETAIL: statement: "", query: "select machtypeclsid from machtypes where id=214748365"
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:681LOG: DB node id: 0 backend pid: 59852 statement: Parse: select machtypeclsid from machtypes where id=214748365
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:682LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:683DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:684LOG: DB node id: 0 backend pid: 59852 statement: Bind: select machtypeclsid from machtypes where id=214748365
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:685LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:686DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:687LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:688LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:689DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:690LOG: statement: select machtypeclsid from machtypes where id=214748365
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:691LOG: DB node id: 0 backend pid: 59852 statement: Execute: select machtypeclsid from machtypes where id=214748365
[59728] 2025-05-02 14:09:54.024 SMA amantzio at dynacom line:692LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:54.025 SMA amantzio at dynacom line:693LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:54.025 SMA amantzio at dynacom line:694DETAIL: statement: "", query: "select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno"
[59728] 2025-05-02 14:09:54.025 SMA amantzio at dynacom line:695LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"parts"')::oid, 0)
[59728] 2025-05-02 14:09:54.025 SMA amantzio at dynacom line:696LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"partclasses"')::oid, 0)
[59728] 2025-05-02 14:09:54.025 SMA amantzio at dynacom line:697LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'parts' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:54.025 SMA amantzio at dynacom line:698LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'partclasses' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:54.025 SMA amantzio at dynacom line:699LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:54.026 SMA amantzio at dynacom line:700LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:54.026 SMA amantzio at dynacom line:701LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:54.026 SMA amantzio at dynacom line:702LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:54.026 SMA amantzio at dynacom line:703LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:54.026 SMA amantzio at dynacom line:704LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:54.026 SMA amantzio at dynacom line:705LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"parts"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:54.026 SMA amantzio at dynacom line:706LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"partclasses"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:707LOG: DB node id: 0 backend pid: 59852 statement: Parse: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:708LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:709DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:710LOG: DB node id: 0 backend pid: 59852 statement: Bind: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:711LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:712DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:713LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:714LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:715DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:716LOG: statement: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:717LOG: DB node id: 0 backend pid: 59852 statement: Execute: select p.id,p.partno,pc.name||','||coalesce(p.drgno,'NDRGNO') from parts p,partclasses pc where p.machtypeclsid = '214748365' and p.partclsid=pc.id order by partno
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:718LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:719LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:720DETAIL: statement: "", query: "select name from pmsactions where machclsid=$1"
[59728] 2025-05-02 14:09:54.027 SMA amantzio at dynacom line:721LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"pmsactions"')::oid, 0)
[59728] 2025-05-02 14:09:54.028 SMA amantzio at dynacom line:722LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsactions' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:54.028 SMA amantzio at dynacom line:723LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:54.028 SMA amantzio at dynacom line:724LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:54.028 SMA amantzio at dynacom line:725LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:54.028 SMA amantzio at dynacom line:726LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsactions"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:54.028 SMA amantzio at dynacom line:727LOG: DB node id: 0 backend pid: 59852 statement: Parse: select name from pmsactions where machclsid=$1
[59728] 2025-05-02 14:09:54.028 SMA amantzio at dynacom line:728LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:54.028 SMA amantzio at dynacom line:729DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:54.028 SMA amantzio at dynacom line:730LOG: DB node id: 0 backend pid: 59852 statement: Bind: select name from pmsactions where machclsid=$1
[59728] 2025-05-02 14:09:54.028 SMA amantzio at dynacom line:731LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:54.028 SMA amantzio at dynacom line:732DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.029 SMA amantzio at dynacom line:733LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:54.029 SMA amantzio at dynacom line:734LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:54.029 SMA amantzio at dynacom line:735DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.029 SMA amantzio at dynacom line:736LOG: statement: select name from pmsactions where machclsid=$1
[59728] 2025-05-02 14:09:54.029 SMA amantzio at dynacom line:737LOG: DB node id: 0 backend pid: 59852 statement: Execute: select name from pmsactions where machclsid=$1
[59728] 2025-05-02 14:09:54.029 SMA amantzio at dynacom line:738LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:54.029 SMA amantzio at dynacom line:739LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:54.029 SMA amantzio at dynacom line:740DETAIL: statement: "", query: "select name from pmsapps"
[59728] 2025-05-02 14:09:54.029 SMA amantzio at dynacom line:741LOG: DB node id: 0 backend pid: 59852 statement: SELECT COALESCE(pg_catalog.to_regclass('"pmsapps"')::oid, 0)
[59728] 2025-05-02 14:09:54.029 SMA amantzio at dynacom line:742LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.relname = 'pmsapps' AND c.relnamespace = n.oid AND n.nspname ~ '^pg_temp_'
[59728] 2025-05-02 14:09:54.029 SMA amantzio at dynacom line:743LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c, pg_catalog.pg_namespace AS n WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relnamespace = n.oid AND n.nspname = 'pg_catalog'
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:744LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relrowsecurity
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:745LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND (c.relkind = 'v' OR c.relkind = 'm')
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:746LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_class AS c WHERE c.oid = pg_catalog.to_regclass('"pmsapps"') AND c.relpersistence = 'u'
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:747LOG: DB node id: 0 backend pid: 59852 statement: Parse: select name from pmsapps
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:748LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:749DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:750LOG: DB node id: 0 backend pid: 59852 statement: Bind: select name from pmsapps
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:751LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:752DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:753LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:754LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:755DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:756LOG: statement: select name from pmsapps
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:757LOG: DB node id: 0 backend pid: 59852 statement: Execute: select name from pmsapps
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:758LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:759LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:760DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:761LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:762LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:763DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:764LOG: statement: COMMIT
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:765LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:09:54.030 SMA amantzio at dynacom line:766LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:767LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:768DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:769LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:770LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:771DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:772LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:773LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:774DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:775LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:776LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:777DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:778LOG: statement:
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:779LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:780LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:781LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:782DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:783LOG: DB node id: 0 backend pid: 59852 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:784LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:785DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:786LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:787LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:788DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:789LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:790LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:791DETAIL: portal: ""
[59728] 2025-05-02 14:09:54.076 SMA amantzio at dynacom line:792LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:54.077 SMA amantzio at dynacom line:793LOG: fetch from memory cache
[59728] 2025-05-02 14:09:54.077 SMA amantzio at dynacom line:794DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:09:54.077 SMA amantzio at dynacom line:795LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:796LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:797DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:798LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:799LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:800DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:801LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:802LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:803DETAIL: portal: ""
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:804LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:805LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:806DETAIL: portal: ""
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:807LOG: statement:
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:808LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:809LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:810LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:811DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:812LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:813LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:814DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:815LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:816LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:817DETAIL: portal: ""
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:818LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:819LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:820DETAIL: portal: ""
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:821LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:57.475 SMA amantzio at dynacom line:822LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:09:57.476 SMA amantzio at dynacom line:823LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:824LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:825DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:826LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:827LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:828DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:829LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:830LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:831DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:832LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:833LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:834DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:835LOG: statement:
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:836LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:837LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:838LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:839DETAIL: statement: "", query: "BEGIN"
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:840LOG: DB node id: 0 backend pid: 59852 statement: Parse: BEGIN
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:841LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:842DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:843LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:844LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:845DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:846LOG: statement: BEGIN
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:847LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:848LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:849DETAIL: statement: "", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:850LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:851LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:852DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:853LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:854LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:855DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:856LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:857LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:858DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.131 SMA amantzio at dynacom line:859LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:09:58.132 SMA amantzio at dynacom line:860LOG: fetch from memory cache
[59728] 2025-05-02 14:09:58.132 SMA amantzio at dynacom line:861DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[59728] 2025-05-02 14:09:58.132 SMA amantzio at dynacom line:862LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:863LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:864DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:865LOG: DB node id: 0 backend pid: 59852 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:866LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:867DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:868LOG: DB node id: 0 backend pid: 59852 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:869LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:870DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:871LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:872LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:873DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:874LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:875LOG: DB node id: 0 backend pid: 59852 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:09:58.133 SMA amantzio at dynacom line:876LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:58.135 SMA amantzio at dynacom line:877LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:58.135 SMA amantzio at dynacom line:878DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[59728] 2025-05-02 14:09:58.135 SMA amantzio at dynacom line:879LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'i'
[59728] 2025-05-02 14:09:58.135 SMA amantzio at dynacom line:880LOG: DB node id: 0 backend pid: 59852 statement: Parse: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:881LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:882DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:883LOG: DB node id: 0 backend pid: 59852 statement: Bind: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:884LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:885DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:886LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:887LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:888DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:889LOG: statement: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:890LOG: DB node id: 0 backend pid: 59852 statement: Execute: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:891LOG: DB node id: 0 backend pid: 59852 statement: SELECT count(*) FROM pg_catalog.pg_proc AS p, pg_catalog.pg_namespace AS n WHERE p.proname = 'currval' AND n.oid = p.pronamespace AND n.nspname ~ '.*' AND p.provolatile = 'v'
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:892LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:893LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:894DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767518,it2.machtypecount from items it2 where it2.defid=214767517"
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:895LOG: DB node id: 0 backend pid: 59852 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767518,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:896LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:897DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:898LOG: DB node id: 0 backend pid: 59852 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767518,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:899LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:58.136 SMA amantzio at dynacom line:900DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.137 SMA amantzio at dynacom line:901LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:58.137 SMA amantzio at dynacom line:902LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:58.137 SMA amantzio at dynacom line:903DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.137 SMA amantzio at dynacom line:904LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767518,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:09:58.137 SMA amantzio at dynacom line:905LOG: DB node id: 0 backend pid: 59852 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767518,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:09:58.137 SMA amantzio at dynacom line:906LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:58.140 SMA amantzio at dynacom line:907LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:58.140 SMA amantzio at dynacom line:908DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:09:58.140 SMA amantzio at dynacom line:909LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:09:58.140 SMA amantzio at dynacom line:910LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:58.140 SMA amantzio at dynacom line:911DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.140 SMA amantzio at dynacom line:912LOG: statement: COMMIT
[59728] 2025-05-02 14:09:58.140 SMA amantzio at dynacom line:913LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:09:58.140 SMA amantzio at dynacom line:914LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:58.144 SMA amantzio at dynacom line:915LOG: error while deleting item from shmem cache, item: 87 was already deleted
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:916LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:917DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:918LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:919LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:920DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:921LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:922LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:923DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:924LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:925LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:926DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:927LOG: statement:
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:928LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:09:58.652 SMA amantzio at dynacom line:929LOG: Sync message from frontend.
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:930LOG: Parse message from frontend.
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:931DETAIL: statement: "", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:932LOG: DB node id: 0 backend pid: 59852 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:933LOG: Bind message from frontend.
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:934DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:935LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:936LOG: Describe message from frontend.
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:937DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:938LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:939LOG: Execute message from frontend.
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:940DETAIL: portal: ""
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:941LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:942LOG: fetch from memory cache
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:943DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:09:58.653 SMA amantzio at dynacom line:944LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:945LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:946DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:947LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:948LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:949DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:950LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:951LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:952DETAIL: portal: ""
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:953LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:954LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:955DETAIL: portal: ""
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:956LOG: statement:
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:957LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:958LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:959LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:960DETAIL: statement: "S_2", query: "SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk"
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:961LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:962LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:963DETAIL: portal: "", statement: "S_2"
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:964LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:965LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:966DETAIL: portal: ""
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:967LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:968LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:969DETAIL: portal: ""
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:970LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:971LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:01.619 SMA amantzio at dynacom line:972LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:973LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:974DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:975LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:976LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:977DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:978LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:979LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:980DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:981LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:982LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:983DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:984LOG: statement:
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:985LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:986LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:987LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:988DETAIL: statement: "S_3", query: "BEGIN"
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:989LOG: DB node id: 0 backend pid: 59852 statement: Parse: BEGIN
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:990LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:991DETAIL: portal: "", statement: "S_3"
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:992LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:993LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:994DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:995LOG: statement: BEGIN
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:996LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:997LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:02.270 SMA amantzio at dynacom line:998DETAIL: statement: "S_4", query: "SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id"
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:999LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1000LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1001DETAIL: portal: "", statement: "S_4"
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1002LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1003LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1004DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1005LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1006LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1007DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1008LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1009LOG: fetch from memory cache
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1010DETAIL: query result fetched from cache. statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id 000100010001000000040CCCCCCD0000
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1011LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1012LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1013DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1014LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1015LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1016DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1017LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1018LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1019DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1020LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1021LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1022DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.271 SMA amantzio at dynacom line:1023LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1024LOG: fetch from memory cache
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1025DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1026LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1027LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1028DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1029LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1030LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1031DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1032LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1033LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1034DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1035LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1036LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1037DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1038LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1039LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:02.272 SMA amantzio at dynacom line:1040LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1041LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1042DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1043LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1044LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1045DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1046LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1047LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1048DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1049LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1050LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1051DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1052LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1053LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:02.273 SMA amantzio at dynacom line:1054LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1055LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1056DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1057LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1058LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1059DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1060LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1061LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1062DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1063LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1064LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1065DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1066LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1067LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:02.274 SMA amantzio at dynacom line:1068LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1069LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1070DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1071LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1072LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1073DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1074LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1075LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1076DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1077LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1078LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1079DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1080LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1081LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:02.323 SMA amantzio at dynacom line:1082LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1083LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1084DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1085LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1086LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1087DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1088LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1089LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1090DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1091LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1092LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1093DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1094LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1095LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:02.324 SMA amantzio at dynacom line:1096LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:02.373 SMA amantzio at dynacom line:1097LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:02.373 SMA amantzio at dynacom line:1098DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:10:02.373 SMA amantzio at dynacom line:1099LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:10:02.373 SMA amantzio at dynacom line:1100LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:02.373 SMA amantzio at dynacom line:1101DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.373 SMA amantzio at dynacom line:1102LOG: statement: COMMIT
[59728] 2025-05-02 14:10:02.373 SMA amantzio at dynacom line:1103LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:10:02.373 SMA amantzio at dynacom line:1104LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1105LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1106DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1107LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1108LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1109DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1110LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1111LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1112DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1113LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1114LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1115DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1116LOG: statement:
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1117LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:02.557 SMA amantzio at dynacom line:1118LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1119LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1120DETAIL: statement: "S_5", query: "select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2"
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1121LOG: DB node id: 0 backend pid: 59852 statement: Parse: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1122LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1123DETAIL: portal: "", statement: "S_5"
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1124LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1125LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1126DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1127LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1128LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1129DETAIL: portal: ""
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1130LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1131LOG: fetch from memory cache
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1132DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:10:02.558 SMA amantzio at dynacom line:1133LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1134LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1135DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1136LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1137LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1138DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1139LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1140LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1141DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1142LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1143LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1144DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1145LOG: statement:
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1146LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1147LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1148LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1149DETAIL: portal: "", statement: "S_2"
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1150LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1151LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1152DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1153LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1154LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:08.034 SMA amantzio at dynacom line:1155LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1156LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1157DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1158LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1159LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1160DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1161LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1162LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1163DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1164LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1165LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1166DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1167LOG: statement:
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1168LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1169LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1170LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1171DETAIL: portal: "", statement: "S_3"
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1172LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1173LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1174DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1175LOG: statement: BEGIN
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1176LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1177LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1178DETAIL: portal: "", statement: "S_4"
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1179LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1180LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1181DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1182LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1183LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:08.789 SMA amantzio at dynacom line:1184LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1185LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1186DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1187LOG: DB node id: 0 backend pid: 59852 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1188LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1189DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1190LOG: DB node id: 0 backend pid: 59852 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1191LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1192DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1193LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1194LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1195DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1196LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1197LOG: DB node id: 0 backend pid: 59852 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:08.790 SMA amantzio at dynacom line:1198LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1199LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1200DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1201LOG: DB node id: 0 backend pid: 59852 statement: Parse: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1202LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1203DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1204LOG: DB node id: 0 backend pid: 59852 statement: Bind: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1205LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1206DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1207LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1208LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1209DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1210LOG: statement: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1211LOG: DB node id: 0 backend pid: 59852 statement: Execute: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1212LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1213LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1214DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767519,it2.machtypecount from items it2 where it2.defid=214767517"
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1215LOG: DB node id: 0 backend pid: 59852 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767519,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1216LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1217DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1218LOG: DB node id: 0 backend pid: 59852 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767519,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1219LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1220DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1221LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1222LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1223DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1224LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767519,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1225LOG: DB node id: 0 backend pid: 59852 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767519,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:08.791 SMA amantzio at dynacom line:1226LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:08.794 SMA amantzio at dynacom line:1227LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:08.794 SMA amantzio at dynacom line:1228DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:10:08.794 SMA amantzio at dynacom line:1229LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:10:08.794 SMA amantzio at dynacom line:1230LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:08.794 SMA amantzio at dynacom line:1231DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.794 SMA amantzio at dynacom line:1232LOG: statement: COMMIT
[59728] 2025-05-02 14:10:08.794 SMA amantzio at dynacom line:1233LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:10:08.794 SMA amantzio at dynacom line:1234LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:08.796 SMA amantzio at dynacom line:1235LOG: error while deleting item from shmem cache, item: 133 was already deleted
[59728] 2025-05-02 14:10:08.796 SMA amantzio at dynacom line:1236LOG: error while deleting item from shmem cache, item: 135 was already deleted
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1237LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1238DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1239LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1240LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1241DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1242LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1243LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1244DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1245LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1246LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1247DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1248LOG: statement:
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1249LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1250LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1251LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1252DETAIL: portal: "", statement: "S_5"
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1253LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1254LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1255DETAIL: portal: ""
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1256LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1257LOG: fetch from memory cache
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1258DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:10:08.872 SMA amantzio at dynacom line:1259LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1260LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1261DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1262LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1263LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1264DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1265LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1266LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1267DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1268LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1269LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1270DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1271LOG: statement:
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1272LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1273LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1274LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1275DETAIL: portal: "", statement: "S_2"
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1276LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1277LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1278DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1279LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1280LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:11.145 SMA amantzio at dynacom line:1281LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1282LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1283DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1284LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1285LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1286DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1287LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1288LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1289DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1290LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1291LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1292DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1293LOG: statement:
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1294LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1295LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1296LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1297DETAIL: portal: "", statement: "S_3"
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1298LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1299LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1300DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1301LOG: statement: BEGIN
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1302LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1303LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1304DETAIL: portal: "", statement: "S_4"
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1305LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1306LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1307DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1308LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1309LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:11.770 SMA amantzio at dynacom line:1310LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.771 SMA amantzio at dynacom line:1311LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:11.771 SMA amantzio at dynacom line:1312DETAIL: statement: "", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[59728] 2025-05-02 14:10:11.771 SMA amantzio at dynacom line:1313LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:11.771 SMA amantzio at dynacom line:1314LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.771 SMA amantzio at dynacom line:1315DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:11.771 SMA amantzio at dynacom line:1316LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:11.771 SMA amantzio at dynacom line:1317LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:11.771 SMA amantzio at dynacom line:1318DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.771 SMA amantzio at dynacom line:1319LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:11.771 SMA amantzio at dynacom line:1320LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.771 SMA amantzio at dynacom line:1321DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.771 SMA amantzio at dynacom line:1322LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1323LOG: fetch from memory cache
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1324DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1325LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1326LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1327DETAIL: statement: "", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1328LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1329LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1330DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1331LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1332LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1333DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1334LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1335LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1336DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1337LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1338LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1339LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1340LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1341DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1342LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1343LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1344DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1345LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1346LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1347DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1348LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1349LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1350DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1351LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1352LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:11.772 SMA amantzio at dynacom line:1353LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1354LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1355DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1356LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1357LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1358DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1359LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1360LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1361DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1362LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1363LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1364DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1365LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1366LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:11.773 SMA amantzio at dynacom line:1367LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.819 SMA amantzio at dynacom line:1368LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1369DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1370LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1371LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1372DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1373LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1374LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1375DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1376LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1377LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1378DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1379LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1380LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:11.820 SMA amantzio at dynacom line:1381LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1382LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1383DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1384LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1385LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1386DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1387LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1388LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1389DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1390LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1391LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1392DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1393LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1394LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:11.821 SMA amantzio at dynacom line:1395LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1396LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1397DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1398LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1399LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1400DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1401LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1402LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1403DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1404LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1405LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1406DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1407LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1408LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:11.865 SMA amantzio at dynacom line:1409LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1410LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1411DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1412LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1413LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1414DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1415LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1416LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1417DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1418LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1419LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1420DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1421LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1422LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:11.866 SMA amantzio at dynacom line:1423LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:11.910 SMA amantzio at dynacom line:1424LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:11.910 SMA amantzio at dynacom line:1425DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:10:11.910 SMA amantzio at dynacom line:1426LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:10:11.910 SMA amantzio at dynacom line:1427LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:11.910 SMA amantzio at dynacom line:1428DETAIL: portal: ""
[59728] 2025-05-02 14:10:11.910 SMA amantzio at dynacom line:1429LOG: statement: COMMIT
[59728] 2025-05-02 14:10:11.910 SMA amantzio at dynacom line:1430LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:10:11.910 SMA amantzio at dynacom line:1431LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1432LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1433DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1434LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1435LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1436DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1437LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1438LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1439DETAIL: portal: ""
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1440LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1441LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1442DETAIL: portal: ""
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1443LOG: statement:
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1444LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1445LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1446LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1447DETAIL: portal: "", statement: "S_5"
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1448LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1449LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1450DETAIL: portal: ""
[59728] 2025-05-02 14:10:12.140 SMA amantzio at dynacom line:1451LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:12.141 SMA amantzio at dynacom line:1452LOG: fetch from memory cache
[59728] 2025-05-02 14:10:12.141 SMA amantzio at dynacom line:1453DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:10:12.141 SMA amantzio at dynacom line:1454LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1455LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1456DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1457LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1458LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1459DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1460LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1461LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1462DETAIL: portal: ""
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1463LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1464LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1465DETAIL: portal: ""
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1466LOG: statement:
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1467LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:16.442 SMA amantzio at dynacom line:1468LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:16.443 SMA amantzio at dynacom line:1469LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:16.443 SMA amantzio at dynacom line:1470DETAIL: portal: "", statement: "S_2"
[59728] 2025-05-02 14:10:16.443 SMA amantzio at dynacom line:1471LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:16.443 SMA amantzio at dynacom line:1472LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:16.443 SMA amantzio at dynacom line:1473DETAIL: portal: ""
[59728] 2025-05-02 14:10:16.443 SMA amantzio at dynacom line:1474LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:16.443 SMA amantzio at dynacom line:1475LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:16.443 SMA amantzio at dynacom line:1476LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1477LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1478DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1479LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1480LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1481DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1482LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1483LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1484DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1485LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1486LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1487DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1488LOG: statement:
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1489LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:17.148 SMA amantzio at dynacom line:1490LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1491LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1492DETAIL: portal: "", statement: "S_3"
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1493LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1494LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1495DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1496LOG: statement: BEGIN
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1497LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1498LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1499DETAIL: portal: "", statement: "S_4"
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1500LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1501LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1502DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1503LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1504LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1505LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1506LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1507DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1508LOG: DB node id: 0 backend pid: 59852 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1509LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1510DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1511LOG: DB node id: 0 backend pid: 59852 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1512LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1513DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1514LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1515LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1516DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.149 SMA amantzio at dynacom line:1517LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1518LOG: DB node id: 0 backend pid: 59852 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1519LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1520LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1521DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1522LOG: DB node id: 0 backend pid: 59852 statement: Parse: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1523LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1524DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1525LOG: DB node id: 0 backend pid: 59852 statement: Bind: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1526LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1527DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1528LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1529LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1530DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1531LOG: statement: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1532LOG: DB node id: 0 backend pid: 59852 statement: Execute: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:17.150 SMA amantzio at dynacom line:1533LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1534LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1535DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767520,it2.machtypecount from items it2 where it2.defid=214767517"
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1536LOG: DB node id: 0 backend pid: 59852 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767520,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1537LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1538DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1539LOG: DB node id: 0 backend pid: 59852 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767520,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1540LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1541DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1542LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1543LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1544DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1545LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767520,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1546LOG: DB node id: 0 backend pid: 59852 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767520,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:17.151 SMA amantzio at dynacom line:1547LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:17.155 SMA amantzio at dynacom line:1548LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:17.155 SMA amantzio at dynacom line:1549DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:10:17.155 SMA amantzio at dynacom line:1550LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:10:17.155 SMA amantzio at dynacom line:1551LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:17.155 SMA amantzio at dynacom line:1552DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.155 SMA amantzio at dynacom line:1553LOG: statement: COMMIT
[59728] 2025-05-02 14:10:17.155 SMA amantzio at dynacom line:1554LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:10:17.155 SMA amantzio at dynacom line:1555LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:17.157 SMA amantzio at dynacom line:1556LOG: error while deleting item from shmem cache, item: 137 was already deleted
[59728] 2025-05-02 14:10:17.157 SMA amantzio at dynacom line:1557LOG: error while deleting item from shmem cache, item: 139 was already deleted
[59728] 2025-05-02 14:10:17.157 SMA amantzio at dynacom line:1558LOG: error while deleting item from shmem cache, item: 141 was already deleted
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1559LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1560DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1561LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1562LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1563DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1564LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1565LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1566DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1567LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1568LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1569DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1570LOG: statement:
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1571LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1572LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1573LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1574DETAIL: portal: "", statement: "S_5"
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1575LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1576LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1577DETAIL: portal: ""
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1578LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1579LOG: fetch from memory cache
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1580DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:10:17.305 SMA amantzio at dynacom line:1581LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1582LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1583DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1584LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1585LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1586DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1587LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1588LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1589DETAIL: portal: ""
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1590LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1591LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1592DETAIL: portal: ""
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1593LOG: statement:
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1594LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1595LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1596LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1597DETAIL: portal: "", statement: "S_2"
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1598LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1599LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1600DETAIL: portal: ""
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1601LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1602LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:19.688 SMA amantzio at dynacom line:1603LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1604LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1605DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1606LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1607LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1608DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1609LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1610LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1611DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1612LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1613LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1614DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1615LOG: statement:
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1616LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1617LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1618LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1619DETAIL: portal: "", statement: "S_3"
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1620LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1621LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1622DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1623LOG: statement: BEGIN
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1624LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1625LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1626DETAIL: portal: "", statement: "S_4"
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1627LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1628LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1629DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1630LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:20.407 SMA amantzio at dynacom line:1631LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1632LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1633LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1634DETAIL: statement: "S_6", query: "SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'"
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1635LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1636LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1637DETAIL: portal: "", statement: "S_6"
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1638LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1639LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1640DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1641LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1642LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1643DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.408 SMA amantzio at dynacom line:1644LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1645LOG: fetch from memory cache
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1646DETAIL: query result fetched from cache. statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365' 000000000000
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1647LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1648LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1649DETAIL: statement: "S_7", query: "SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1"
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1650LOG: DB node id: 0 backend pid: 59852 statement: Parse: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1651LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1652DETAIL: portal: "", statement: "S_7"
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1653LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1654LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1655DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1656LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1657LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1658DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1659LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1660LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1661LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1662LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:20.409 SMA amantzio at dynacom line:1663DETAIL: statement: "S_8", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1664LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1665LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1666DETAIL: portal: "", statement: "S_8"
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1667LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1668LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1669DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1670LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1671LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1672DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1673LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1674LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1675LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1676LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1677DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:20.410 SMA amantzio at dynacom line:1678LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.411 SMA amantzio at dynacom line:1679LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.411 SMA amantzio at dynacom line:1680DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:20.411 SMA amantzio at dynacom line:1681LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.411 SMA amantzio at dynacom line:1682LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:20.411 SMA amantzio at dynacom line:1683DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.411 SMA amantzio at dynacom line:1684LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:20.411 SMA amantzio at dynacom line:1685LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.411 SMA amantzio at dynacom line:1686DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.411 SMA amantzio at dynacom line:1687LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.411 SMA amantzio at dynacom line:1688LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.411 SMA amantzio at dynacom line:1689LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1690LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1691DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1692LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1693LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1694DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1695LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1696LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1697DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1698LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1699LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1700DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1701LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1702LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.462 SMA amantzio at dynacom line:1703LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1704LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1705DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1706LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1707LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1708DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1709LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1710LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1711DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1712LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1713LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1714DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1715LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1716LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.463 SMA amantzio at dynacom line:1717LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1718LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1719DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1720LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1721LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1722DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1723LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1724LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1725DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1726LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1727LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1728DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1729LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1730LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.511 SMA amantzio at dynacom line:1731LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1732LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1733DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1734LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1735LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1736DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1737LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1738LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1739DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1740LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1741LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1742DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1743LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1744LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.512 SMA amantzio at dynacom line:1745LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1746LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1747DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1748LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1749LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1750DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1751LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1752LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1753DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1754LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1755LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1756DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1757LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1758LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:20.563 SMA amantzio at dynacom line:1759LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1760LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1761DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1762LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1763LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1764DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1765LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1766LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1767DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1768LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1769LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1770DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1771LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1772LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:20.565 SMA amantzio at dynacom line:1773LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.615 SMA amantzio at dynacom line:1774LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.615 SMA amantzio at dynacom line:1775DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:10:20.615 SMA amantzio at dynacom line:1776LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:10:20.615 SMA amantzio at dynacom line:1777LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.615 SMA amantzio at dynacom line:1778DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.615 SMA amantzio at dynacom line:1779LOG: statement: COMMIT
[59728] 2025-05-02 14:10:20.615 SMA amantzio at dynacom line:1780LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:10:20.615 SMA amantzio at dynacom line:1781LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1782LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1783DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1784LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1785LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1786DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1787LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1788LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1789DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1790LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1791LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1792DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1793LOG: statement:
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1794LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:20.787 SMA amantzio at dynacom line:1795LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:20.788 SMA amantzio at dynacom line:1796LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:20.788 SMA amantzio at dynacom line:1797DETAIL: portal: "", statement: "S_5"
[59728] 2025-05-02 14:10:20.788 SMA amantzio at dynacom line:1798LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:20.788 SMA amantzio at dynacom line:1799LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:20.788 SMA amantzio at dynacom line:1800DETAIL: portal: ""
[59728] 2025-05-02 14:10:20.788 SMA amantzio at dynacom line:1801LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:20.788 SMA amantzio at dynacom line:1802LOG: fetch from memory cache
[59728] 2025-05-02 14:10:20.788 SMA amantzio at dynacom line:1803DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:10:20.788 SMA amantzio at dynacom line:1804LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1805LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1806DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1807LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1808LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1809DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1810LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1811LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1812DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1813LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1814LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1815DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1816LOG: statement:
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1817LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1818LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1819LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1820DETAIL: portal: "", statement: "S_2"
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1821LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1822LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1823DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1824LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1825LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:25.161 SMA amantzio at dynacom line:1826LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1827LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1828DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1829LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1830LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1831DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1832LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1833LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1834DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1835LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1836LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1837DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1838LOG: statement:
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1839LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1840LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1841LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1842DETAIL: portal: "", statement: "S_3"
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1843LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1844LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1845DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1846LOG: statement: BEGIN
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1847LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1848LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1849DETAIL: portal: "", statement: "S_4"
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1850LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1851LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1852DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1853LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1854LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:25.804 SMA amantzio at dynacom line:1855LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1856LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1857DETAIL: statement: "", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1858LOG: DB node id: 0 backend pid: 59852 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1859LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1860DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1861LOG: DB node id: 0 backend pid: 59852 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1862LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1863DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1864LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1865LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1866DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1867LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1868LOG: DB node id: 0 backend pid: 59852 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:25.805 SMA amantzio at dynacom line:1869LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1870LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1871DETAIL: statement: "", query: "select currval('machdefs_defid_seq')"
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1872LOG: DB node id: 0 backend pid: 59852 statement: Parse: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1873LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1874DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1875LOG: DB node id: 0 backend pid: 59852 statement: Bind: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1876LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1877DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1878LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1879LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1880DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1881LOG: statement: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1882LOG: DB node id: 0 backend pid: 59852 statement: Execute: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1883LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1884LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1885DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767521,it2.machtypecount from items it2 where it2.defid=214767517"
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1886LOG: DB node id: 0 backend pid: 59852 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767521,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1887LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1888DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1889LOG: DB node id: 0 backend pid: 59852 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767521,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1890LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1891DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1892LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1893LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1894DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.806 SMA amantzio at dynacom line:1895LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767521,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:25.807 SMA amantzio at dynacom line:1896LOG: DB node id: 0 backend pid: 59852 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767521,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:25.807 SMA amantzio at dynacom line:1897LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:25.811 SMA amantzio at dynacom line:1898LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:25.811 SMA amantzio at dynacom line:1899DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:10:25.811 SMA amantzio at dynacom line:1900LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:10:25.811 SMA amantzio at dynacom line:1901LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:25.811 SMA amantzio at dynacom line:1902DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.811 SMA amantzio at dynacom line:1903LOG: statement: COMMIT
[59728] 2025-05-02 14:10:25.811 SMA amantzio at dynacom line:1904LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:10:25.811 SMA amantzio at dynacom line:1905LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:25.822 SMA amantzio at dynacom line:1906LOG: error while deleting item from shmem cache, item: 143 was already deleted
[59728] 2025-05-02 14:10:25.822 SMA amantzio at dynacom line:1907LOG: error while deleting item from shmem cache, item: 145 was already deleted
[59728] 2025-05-02 14:10:25.822 SMA amantzio at dynacom line:1908LOG: error while deleting item from shmem cache, item: 147 was already deleted
[59728] 2025-05-02 14:10:25.822 SMA amantzio at dynacom line:1909LOG: error while deleting item from shmem cache, item: 149 was already deleted
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1910LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1911DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1912LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1913LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1914DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1915LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1916LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1917DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1918LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1919LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1920DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1921LOG: statement:
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1922LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1923LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1924LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1925DETAIL: portal: "", statement: "S_5"
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1926LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1927LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1928DETAIL: portal: ""
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1929LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1930LOG: fetch from memory cache
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1931DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:10:25.953 SMA amantzio at dynacom line:1932LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1933LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1934DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1935LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1936LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1937DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1938LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1939LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1940DETAIL: portal: ""
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1941LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1942LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1943DETAIL: portal: ""
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1944LOG: statement:
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1945LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1946LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1947LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1948DETAIL: portal: "", statement: "S_2"
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1949LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1950LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1951DETAIL: portal: ""
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1952LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1953LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:28.546 SMA amantzio at dynacom line:1954LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1955LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1956DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1957LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1958LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1959DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1960LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1961LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1962DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1963LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1964LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1965DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1966LOG: statement:
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1967LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1968LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1969LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1970DETAIL: portal: "", statement: "S_3"
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1971LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1972LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1973DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1974LOG: statement: BEGIN
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1975LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1976LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1977DETAIL: portal: "", statement: "S_4"
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1978LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1979LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1980DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1981LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1982LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:29.184 SMA amantzio at dynacom line:1983LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1984LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1985DETAIL: portal: "", statement: "S_6"
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1986LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1987LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1988DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1989LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1990LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1991LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1992LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1993DETAIL: portal: "", statement: "S_7"
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1994LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1995LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1996DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1997LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1998LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:1999LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:2000LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:2001DETAIL: portal: "", statement: "S_8"
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:2002LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:2003LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:2004DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:2005LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:2006LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.185 SMA amantzio at dynacom line:2007LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2008LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2009DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2010LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2011LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2012DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2013LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2014LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2015DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2016LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2017LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2018DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2019LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2020LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.186 SMA amantzio at dynacom line:2021LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.238 SMA amantzio at dynacom line:2022LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:29.238 SMA amantzio at dynacom line:2023DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:29.239 SMA amantzio at dynacom line:2024LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.239 SMA amantzio at dynacom line:2025LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.239 SMA amantzio at dynacom line:2026DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:29.239 SMA amantzio at dynacom line:2027LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.239 SMA amantzio at dynacom line:2028LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:29.239 SMA amantzio at dynacom line:2029DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.239 SMA amantzio at dynacom line:2030LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:29.239 SMA amantzio at dynacom line:2031LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.239 SMA amantzio at dynacom line:2032DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.239 SMA amantzio at dynacom line:2033LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.239 SMA amantzio at dynacom line:2034LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.239 SMA amantzio at dynacom line:2035LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2036LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2037DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2038LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2039LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2040DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2041LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2042LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2043DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2044LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2045LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2046DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2047LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2048LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.240 SMA amantzio at dynacom line:2049LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2050LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2051DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2052LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2053LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2054DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2055LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2056LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2057DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2058LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2059LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2060DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2061LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2062LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.291 SMA amantzio at dynacom line:2063LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2064LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2065DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2066LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2067LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2068DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2069LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2070LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2071DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2072LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2073LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2074DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2075LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2076LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.292 SMA amantzio at dynacom line:2077LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2078LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2079DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2080LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2081LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2082DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2083LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2084LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2085DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2086LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2087LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2088DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2089LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2090LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.339 SMA amantzio at dynacom line:2091LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2092LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2093DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2094LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2095LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2096DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2097LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2098LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2099DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2100LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2101LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2102DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2103LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2104LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.340 SMA amantzio at dynacom line:2105LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2106LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2107DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2108LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2109LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2110DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2111LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2112LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2113DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2114LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2115LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2116DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2117LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2118LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:29.383 SMA amantzio at dynacom line:2119LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2120LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2121DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2122LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2123LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2124DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2125LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2126LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2127DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2128LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2129LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2130DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2131LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2132LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:29.384 SMA amantzio at dynacom line:2133LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.430 SMA amantzio at dynacom line:2134LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.430 SMA amantzio at dynacom line:2135DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:10:29.430 SMA amantzio at dynacom line:2136LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:10:29.430 SMA amantzio at dynacom line:2137LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.430 SMA amantzio at dynacom line:2138DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.430 SMA amantzio at dynacom line:2139LOG: statement: COMMIT
[59728] 2025-05-02 14:10:29.430 SMA amantzio at dynacom line:2140LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:10:29.430 SMA amantzio at dynacom line:2141LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2142LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2143DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2144LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2145LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2146DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2147LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2148LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2149DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2150LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2151LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2152DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2153LOG: statement:
[59728] 2025-05-02 14:10:29.440 SMA amantzio at dynacom line:2154LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:29.441 SMA amantzio at dynacom line:2155LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:29.441 SMA amantzio at dynacom line:2156LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:29.441 SMA amantzio at dynacom line:2157DETAIL: portal: "", statement: "S_5"
[59728] 2025-05-02 14:10:29.441 SMA amantzio at dynacom line:2158LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:29.441 SMA amantzio at dynacom line:2159LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:29.441 SMA amantzio at dynacom line:2160DETAIL: portal: ""
[59728] 2025-05-02 14:10:29.441 SMA amantzio at dynacom line:2161LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:29.441 SMA amantzio at dynacom line:2162LOG: fetch from memory cache
[59728] 2025-05-02 14:10:29.441 SMA amantzio at dynacom line:2163DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:10:29.441 SMA amantzio at dynacom line:2164LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2165LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2166DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2167LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2168LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2169DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2170LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2171LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2172DETAIL: portal: ""
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2173LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2174LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2175DETAIL: portal: ""
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2176LOG: statement:
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2177LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2178LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2179LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2180DETAIL: portal: "", statement: "S_2"
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2181LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2182LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2183DETAIL: portal: ""
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2184LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:34.852 SMA amantzio at dynacom line:2185LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:34.853 SMA amantzio at dynacom line:2186LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2187LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2188DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2189LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2190LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2191DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2192LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2193LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2194DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2195LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2196LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2197DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2198LOG: statement:
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2199LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2200LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2201LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2202DETAIL: portal: "", statement: "S_3"
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2203LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2204LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2205DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2206LOG: statement: BEGIN
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2207LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2208LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2209DETAIL: portal: "", statement: "S_4"
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2210LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2211LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2212DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2213LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2214LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:35.482 SMA amantzio at dynacom line:2215LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2216LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2217DETAIL: statement: "S_9", query: "insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16) "
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2218LOG: DB node id: 0 backend pid: 59852 statement: Parse: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2219LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2220DETAIL: portal: "", statement: "S_9"
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2221LOG: DB node id: 0 backend pid: 59852 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2222LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2223DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2224LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2225LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2226DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2227LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2228LOG: DB node id: 0 backend pid: 59852 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2229LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2230LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:35.483 SMA amantzio at dynacom line:2231DETAIL: statement: "S_10", query: "select currval('machdefs_defid_seq')"
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2232LOG: DB node id: 0 backend pid: 59852 statement: Parse: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2233LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2234DETAIL: portal: "", statement: "S_10"
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2235LOG: DB node id: 0 backend pid: 59852 statement: Bind: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2236LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2237DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2238LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2239LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2240DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2241LOG: statement: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2242LOG: DB node id: 0 backend pid: 59852 statement: Execute: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2243LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2244LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2245DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767522,it2.machtypecount from items it2 where it2.defid=214767517"
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2246LOG: DB node id: 0 backend pid: 59852 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767522,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2247LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2248DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2249LOG: DB node id: 0 backend pid: 59852 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767522,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2250LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2251DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2252LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2253LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2254DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2255LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767522,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2256LOG: DB node id: 0 backend pid: 59852 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767522,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:35.484 SMA amantzio at dynacom line:2257LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:35.510 SMA amantzio at dynacom line:2258LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:35.510 SMA amantzio at dynacom line:2259DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:10:35.510 SMA amantzio at dynacom line:2260LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:10:35.510 SMA amantzio at dynacom line:2261LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:35.510 SMA amantzio at dynacom line:2262DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.510 SMA amantzio at dynacom line:2263LOG: statement: COMMIT
[59728] 2025-05-02 14:10:35.510 SMA amantzio at dynacom line:2264LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:10:35.510 SMA amantzio at dynacom line:2265LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:35.512 SMA amantzio at dynacom line:2266LOG: error while deleting item from shmem cache, item: 151 was already deleted
[59728] 2025-05-02 14:10:35.512 SMA amantzio at dynacom line:2267LOG: error while deleting item from shmem cache, item: 153 was already deleted
[59728] 2025-05-02 14:10:35.512 SMA amantzio at dynacom line:2268LOG: error while deleting item from shmem cache, item: 155 was already deleted
[59728] 2025-05-02 14:10:35.512 SMA amantzio at dynacom line:2269LOG: error while deleting item from shmem cache, item: 157 was already deleted
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2270LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2271DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2272LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2273LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2274DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2275LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2276LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2277DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2278LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2279LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2280DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2281LOG: statement:
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2282LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2283LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2284LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2285DETAIL: portal: "", statement: "S_5"
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2286LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2287LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2288DETAIL: portal: ""
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2289LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2290LOG: fetch from memory cache
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2291DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:10:35.655 SMA amantzio at dynacom line:2292LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2293LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2294DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2295LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2296LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2297DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2298LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2299LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2300DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2301LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2302LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2303DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2304LOG: statement:
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2305LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2306LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2307LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2308DETAIL: portal: "", statement: "S_2"
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2309LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2310LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2311DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2312LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2313LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:38.202 SMA amantzio at dynacom line:2314LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2315LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2316DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2317LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2318LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2319DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2320LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2321LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2322DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2323LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2324LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2325DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2326LOG: statement:
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2327LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:38.910 SMA amantzio at dynacom line:2328LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2329LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2330DETAIL: portal: "", statement: "S_3"
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2331LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2332LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2333DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2334LOG: statement: BEGIN
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2335LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2336LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2337DETAIL: portal: "", statement: "S_4"
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2338LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2339LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2340DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2341LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2342LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2343LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2344LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2345DETAIL: portal: "", statement: "S_6"
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2346LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2347LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2348DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2349LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2350LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2351LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2352LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2353DETAIL: portal: "", statement: "S_7"
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2354LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2355LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2356DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2357LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2358LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:38.911 SMA amantzio at dynacom line:2359LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:38.912 SMA amantzio at dynacom line:2360LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:38.912 SMA amantzio at dynacom line:2361DETAIL: portal: "", statement: "S_8"
[59728] 2025-05-02 14:10:38.912 SMA amantzio at dynacom line:2362LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:38.912 SMA amantzio at dynacom line:2363LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:38.912 SMA amantzio at dynacom line:2364DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.912 SMA amantzio at dynacom line:2365LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:38.912 SMA amantzio at dynacom line:2366LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:38.912 SMA amantzio at dynacom line:2367LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2368LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2369DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2370LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2371LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2372DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2373LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2374LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2375DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2376LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2377LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2378DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2379LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2380LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:38.913 SMA amantzio at dynacom line:2381LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:38.965 SMA amantzio at dynacom line:2382LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:38.965 SMA amantzio at dynacom line:2383DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:38.966 SMA amantzio at dynacom line:2384LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:38.966 SMA amantzio at dynacom line:2385LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:38.966 SMA amantzio at dynacom line:2386DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:38.966 SMA amantzio at dynacom line:2387LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:38.966 SMA amantzio at dynacom line:2388LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:38.966 SMA amantzio at dynacom line:2389DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.966 SMA amantzio at dynacom line:2390LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:38.966 SMA amantzio at dynacom line:2391LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:38.966 SMA amantzio at dynacom line:2392DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.966 SMA amantzio at dynacom line:2393LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:38.966 SMA amantzio at dynacom line:2394LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:38.966 SMA amantzio at dynacom line:2395LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2396LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2397DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2398LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2399LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2400DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2401LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2402LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2403DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2404LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2405LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2406DETAIL: portal: ""
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2407LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2408LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:38.967 SMA amantzio at dynacom line:2409LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2410LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2411DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2412LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2413LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2414DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2415LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2416LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2417DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2418LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2419LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2420DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2421LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2422LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.020 SMA amantzio at dynacom line:2423LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2424LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2425DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2426LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2427LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2428DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2429LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2430LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2431DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2432LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2433LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2434DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2435LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2436LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.021 SMA amantzio at dynacom line:2437LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2438LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2439DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2440LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2441LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2442DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2443LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2444LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2445DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2446LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2447LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2448DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2449LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2450LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.067 SMA amantzio at dynacom line:2451LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2452LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2453DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2454LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2455LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2456DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2457LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2458LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2459DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2460LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2461LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2462DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2463LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2464LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.068 SMA amantzio at dynacom line:2465LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2466LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2467DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2468LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2469LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2470DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2471LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2472LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2473DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2474LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2475LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2476DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2477LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2478LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.113 SMA amantzio at dynacom line:2479LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2480LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2481DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2482LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2483LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2484DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2485LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2486LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2487DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2488LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2489LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2490DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2491LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2492LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.114 SMA amantzio at dynacom line:2493LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2494LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2495DETAIL: statement: "S_11", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2496LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2497LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2498DETAIL: portal: "", statement: "S_11"
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2499LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2500LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2501DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2502LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2503LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2504DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2505LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2506LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:39.161 SMA amantzio at dynacom line:2507LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2508LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2509DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2510LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2511LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2512DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2513LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2514LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2515DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2516LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2517LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2518DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2519LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2520LOG: DB node id: 0 backend pid: 59852 statement: Execute: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:39.162 SMA amantzio at dynacom line:2521LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:39.210 SMA amantzio at dynacom line:2522LOG: Close message from frontend.
[59728] 2025-05-02 14:10:39.210 SMA amantzio at dynacom line:2523DETAIL: statement: "S_11"
[59728] 2025-05-02 14:10:39.210 SMA amantzio at dynacom line:2524LOG: DB node id: 0 backend pid: 59852 statement: C message
[59728] 2025-05-02 14:10:39.210 SMA amantzio at dynacom line:2525LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:39.210 SMA amantzio at dynacom line:2526DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:10:39.210 SMA amantzio at dynacom line:2527LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:10:39.210 SMA amantzio at dynacom line:2528LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:39.210 SMA amantzio at dynacom line:2529DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.210 SMA amantzio at dynacom line:2530LOG: statement: COMMIT
[59728] 2025-05-02 14:10:39.210 SMA amantzio at dynacom line:2531LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:10:39.210 SMA amantzio at dynacom line:2532LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2533LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2534DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2535LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2536LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2537DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2538LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2539LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2540DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2541LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2542LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2543DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2544LOG: statement:
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2545LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2546LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2547LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2548DETAIL: portal: "", statement: "S_5"
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2549LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2550LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2551DETAIL: portal: ""
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2552LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2553LOG: fetch from memory cache
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2554DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:10:39.318 SMA amantzio at dynacom line:2555LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2556LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2557DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2558LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2559LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2560DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2561LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2562LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2563DETAIL: portal: ""
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2564LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2565LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2566DETAIL: portal: ""
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2567LOG: statement:
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2568LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2569LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2570LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2571DETAIL: portal: "", statement: "S_2"
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2572LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2573LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2574DETAIL: portal: ""
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2575LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2576LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:44.324 SMA amantzio at dynacom line:2577LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2578LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2579DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2580LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2581LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2582DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2583LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2584LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2585DETAIL: portal: ""
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2586LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2587LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2588DETAIL: portal: ""
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2589LOG: statement:
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2590LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2591LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2592LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2593DETAIL: portal: "", statement: "S_3"
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2594LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2595LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2596DETAIL: portal: ""
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2597LOG: statement: BEGIN
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2598LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2599LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2600DETAIL: portal: "", statement: "S_4"
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2601LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2602LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2603DETAIL: portal: ""
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2604LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2605LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2606LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2607LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2608DETAIL: portal: "", statement: "S_9"
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2609LOG: DB node id: 0 backend pid: 59852 statement: Bind: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2610LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2611DETAIL: portal: ""
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2612LOG: statement: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2613LOG: DB node id: 0 backend pid: 59852 statement: Execute: insert into machdefs(description,partid,machtypeid,rhbec,rhdue,periodbec,perioddue,parents,specialper,action,application,pms_importance, pms_risk, actionnote , jobnote) values($1,$2,$3,$4,$5,$6,$7,(SELECT intarray_push_array(itoar($8),coalesce((select parents from machdefs where defid=$9),'{}'::integer[]))),$10,$11,$12,$13, $14,$15,$16)
[59728] 2025-05-02 14:10:45.038 SMA amantzio at dynacom line:2614LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:45.039 SMA amantzio at dynacom line:2615LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:45.039 SMA amantzio at dynacom line:2616DETAIL: portal: "", statement: "S_10"
[59728] 2025-05-02 14:10:45.039 SMA amantzio at dynacom line:2617LOG: DB node id: 0 backend pid: 59852 statement: Bind: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:45.039 SMA amantzio at dynacom line:2618LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:45.039 SMA amantzio at dynacom line:2619DETAIL: portal: ""
[59728] 2025-05-02 14:10:45.039 SMA amantzio at dynacom line:2620LOG: statement: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:45.039 SMA amantzio at dynacom line:2621LOG: DB node id: 0 backend pid: 59852 statement: Execute: select currval('machdefs_defid_seq')
[59728] 2025-05-02 14:10:45.039 SMA amantzio at dynacom line:2622LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2623LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2624DETAIL: statement: "", query: "INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767523,it2.machtypecount from items it2 where it2.defid=214767517"
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2625LOG: DB node id: 0 backend pid: 59852 statement: Parse: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767523,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2626LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2627DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2628LOG: DB node id: 0 backend pid: 59852 statement: Bind: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767523,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2629LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2630DETAIL: portal: ""
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2631LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2632LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2633DETAIL: portal: ""
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2634LOG: statement: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767523,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2635LOG: DB node id: 0 backend pid: 59852 statement: Execute: INSERT into items(vslwhid,defid,machtypecount) SELECT it2.vslwhid,214767523,it2.machtypecount from items it2 where it2.defid=214767517
[59728] 2025-05-02 14:10:45.040 SMA amantzio at dynacom line:2636LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:45.043 SMA amantzio at dynacom line:2637LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:45.043 SMA amantzio at dynacom line:2638DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:10:45.043 SMA amantzio at dynacom line:2639LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:10:45.043 SMA amantzio at dynacom line:2640LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:45.043 SMA amantzio at dynacom line:2641DETAIL: portal: ""
[59728] 2025-05-02 14:10:45.043 SMA amantzio at dynacom line:2642LOG: statement: COMMIT
[59728] 2025-05-02 14:10:45.043 SMA amantzio at dynacom line:2643LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:10:45.043 SMA amantzio at dynacom line:2644LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2645LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2646DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2647LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2648LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2649DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2650LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2651LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2652DETAIL: portal: ""
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2653LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2654LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2655DETAIL: portal: ""
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2656LOG: statement:
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2657LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:45.268 SMA amantzio at dynacom line:2658LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:45.269 SMA amantzio at dynacom line:2659LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:45.269 SMA amantzio at dynacom line:2660DETAIL: portal: "", statement: "S_5"
[59728] 2025-05-02 14:10:45.269 SMA amantzio at dynacom line:2661LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:45.269 SMA amantzio at dynacom line:2662LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:45.269 SMA amantzio at dynacom line:2663DETAIL: portal: ""
[59728] 2025-05-02 14:10:45.269 SMA amantzio at dynacom line:2664LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:45.269 SMA amantzio at dynacom line:2665LOG: fetch from memory cache
[59728] 2025-05-02 14:10:45.269 SMA amantzio at dynacom line:2666DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:10:45.269 SMA amantzio at dynacom line:2667LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2668LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2669DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2670LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2671LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2672DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2673LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2674LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2675DETAIL: portal: ""
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2676LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2677LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2678DETAIL: portal: ""
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2679LOG: statement:
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2680LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2681LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2682LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2683DETAIL: portal: "", statement: "S_2"
[59728] 2025-05-02 14:10:46.938 SMA amantzio at dynacom line:2684LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:46.939 SMA amantzio at dynacom line:2685LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:46.939 SMA amantzio at dynacom line:2686DETAIL: portal: ""
[59728] 2025-05-02 14:10:46.939 SMA amantzio at dynacom line:2687LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:46.939 SMA amantzio at dynacom line:2688LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mc.name||','||mk.name as mcmk,li.name,mt.typecomment,exists (select 1 from machdefs md where md.machtypeid=mt.id and md.partid is not null), (select string_agg(distinct vsl.name, ',') from machdefs md,items it,vessels vsl where md.machtypeid=mt.id and md.defid=it.defid and it.vslwhid=vsl.id and vsl.vslstatus='Active' AND level(md.parents)=0) from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id order by mcmk
[59728] 2025-05-02 14:10:46.939 SMA amantzio at dynacom line:2689LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2690LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2691DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2692LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2693LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2694DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2695LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2696LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2697DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2698LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2699LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2700DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2701LOG: statement:
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2702LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:47.572 SMA amantzio at dynacom line:2703LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2704LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2705DETAIL: portal: "", statement: "S_3"
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2706LOG: DB node id: 0 backend pid: 59852 statement: Bind: BEGIN
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2707LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2708DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2709LOG: statement: BEGIN
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2710LOG: DB node id: 0 backend pid: 59852 statement: Execute: BEGIN
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2711LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2712DETAIL: portal: "", statement: "S_4"
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2713LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2714LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2715DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2716LOG: statement: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2717LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mc.id,mtc.id from machtypes mt,machtypesclasses mtc,machclasses mc where mt.id=$1 and mt.machtypeclsid = mtc.id and mtc.machclsid = mc.id
[59728] 2025-05-02 14:10:47.580 SMA amantzio at dynacom line:2718LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2719LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2720DETAIL: portal: "", statement: "S_6"
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2721LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2722LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2723DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2724LOG: statement: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2725LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT mt.id,mt.typevar,mtc.type,mk.name,li.name,mt.typecomment,mc.name from machtypes mt,machtypesclasses mtc, makers mk,licensees li,machclasses mc where mk.id = mtc.makerid and mtc.id = mt.machtypeclsid and mt.licenseeid = li.id and mtc.machclsid = mc.id and mt.id='214748365'
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2726LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2727LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2728DETAIL: portal: "", statement: "S_7"
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2729LOG: DB node id: 0 backend pid: 59852 statement: Bind: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2730LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2731DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2732LOG: statement: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2733LOG: DB node id: 0 backend pid: 59852 statement: Execute: SELECT defid from machdefs where parents is null and machtypeid = '214748365' limit 1
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2734LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2735LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2736DETAIL: portal: "", statement: "S_8"
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2737LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2738LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2739DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2740LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2741LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.581 SMA amantzio at dynacom line:2742LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2743LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2744DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2745LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2746LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2747DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2748LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2749LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2750DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2751LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2752LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2753DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2754LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2755LOG: fetch from memory cache
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2756DETAIL: query result fetched from cache. statement: select defid from machdefs where parents[1]=$1 order by description,partid 000100010001000000040CCD179D0000
[59728] 2025-05-02 14:10:47.582 SMA amantzio at dynacom line:2757LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2758LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2759DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2760LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2761LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2762DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2763LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2764LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2765DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2766LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2767LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2768DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2769LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2770LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.583 SMA amantzio at dynacom line:2771LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2772LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2773DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2774LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2775LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2776DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2777LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2778LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2779DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2780LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2781LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2782DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2783LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2784LOG: fetch from memory cache
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2785DETAIL: query result fetched from cache. statement: select defid from machdefs where parents[1]=$1 order by description,partid 000100010001000000040CCD179E0000
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2786LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2787LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2788DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2789LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2790LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2791DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2792LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2793LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2794DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2795LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2796LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2797DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2798LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2799LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.584 SMA amantzio at dynacom line:2800LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2801LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2802DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2803LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2804LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2805DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2806LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2807LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2808DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2809LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2810LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2811DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2812LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2813LOG: fetch from memory cache
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2814DETAIL: query result fetched from cache. statement: select defid from machdefs where parents[1]=$1 order by description,partid 000100010001000000040CCD179F0000
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2815LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2816LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.585 SMA amantzio at dynacom line:2817DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2818LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2819LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2820DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2821LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2822LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2823DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2824LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2825LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2826DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2827LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2828LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2829LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2830LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2831DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2832LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2833LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2834DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2835LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2836LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2837DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2838LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2839LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2840DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2841LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2842LOG: fetch from memory cache
[59728] 2025-05-02 14:10:47.586 SMA amantzio at dynacom line:2843DETAIL: query result fetched from cache. statement: select defid from machdefs where parents[1]=$1 order by description,partid 000100010001000000040CCD17A00000
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2844LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2845LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2846DETAIL: statement: "", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2847LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2848LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2849DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2850LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2851LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2852DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2853LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2854LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2855DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2856LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2857LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2858LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2859LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2860DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2861LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2862LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2863DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2864LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2865LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2866DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2867LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2868LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2869DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.587 SMA amantzio at dynacom line:2870LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2871LOG: fetch from memory cache
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2872DETAIL: query result fetched from cache. statement: select defid from machdefs where parents[1]=$1 order by description,partid 000100010001000000040CCD17A10000
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2873LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2874LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2875DETAIL: statement: "S_12", query: "select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1"
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2876LOG: DB node id: 0 backend pid: 59852 statement: Parse: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2877LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2878DETAIL: portal: "", statement: "S_12"
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2879LOG: DB node id: 0 backend pid: 59852 statement: Bind: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2880LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2881DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2882LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2883LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2884DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2885LOG: statement: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2886LOG: DB node id: 0 backend pid: 59852 statement: Execute: select (level(md.parents)),md.description,md.machtypeid,md.partid,mt.typevar,mtc.type,mk.name,mtc.id,mt.typecomment,li.name, exists (select 1 from items it where it.defid=md.defid and classused>0) from machdefs md,makers mk,machtypes mt,machtypesclasses mtc,licensees li where mt.licenseeid = li.id and md.machtypeid = mt.id and mt.machtypeclsid = mtc.id and mtc.makerid = mk.id and md.defid = $1
[59728] 2025-05-02 14:10:47.588 SMA amantzio at dynacom line:2887LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2888LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2889DETAIL: statement: "", query: "select defid from machdefs where parents[1]=$1 order by description,partid"
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2890LOG: DB node id: 0 backend pid: 59852 statement: Parse: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2891LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2892DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2893LOG: DB node id: 0 backend pid: 59852 statement: Bind: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2894LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2895DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2896LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2897LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2898DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2899LOG: statement: select defid from machdefs where parents[1]=$1 order by description,partid
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2900LOG: fetch from memory cache
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2901DETAIL: query result fetched from cache. statement: select defid from machdefs where parents[1]=$1 order by description,partid 000100010001000000040CCD17A20000
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2902LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2903LOG: Close message from frontend.
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2904DETAIL: statement: "S_12"
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2905LOG: DB node id: 0 backend pid: 59852 statement: C message
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2906LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2907DETAIL: portal: "", statement: "S_1"
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2908LOG: DB node id: 0 backend pid: 59852 statement: Bind: COMMIT
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2909LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2910DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2911LOG: statement: COMMIT
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2912LOG: DB node id: 0 backend pid: 59852 statement: Execute: COMMIT
[59728] 2025-05-02 14:10:47.589 SMA amantzio at dynacom line:2913LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2914LOG: Parse message from frontend.
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2915DETAIL: statement: "", query: ""
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2916LOG: DB node id: 0 backend pid: 59852 statement: Parse:
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2917LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2918DETAIL: portal: "", statement: ""
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2919LOG: DB node id: 0 backend pid: 59852 statement: Bind:
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2920LOG: Describe message from frontend.
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2921DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2922LOG: DB node id: 0 backend pid: 59852 statement: D message
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2923LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2924DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2925LOG: statement:
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2926LOG: DB node id: 0 backend pid: 59852 statement: Execute:
[59728] 2025-05-02 14:10:47.924 SMA amantzio at dynacom line:2927LOG: Sync message from frontend.
[59728] 2025-05-02 14:10:47.925 SMA amantzio at dynacom line:2928LOG: Bind message from frontend.
[59728] 2025-05-02 14:10:47.925 SMA amantzio at dynacom line:2929DETAIL: portal: "", statement: "S_5"
[59728] 2025-05-02 14:10:47.925 SMA amantzio at dynacom line:2930LOG: DB node id: 0 backend pid: 59852 statement: Bind: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:47.925 SMA amantzio at dynacom line:2931LOG: Execute message from frontend.
[59728] 2025-05-02 14:10:47.925 SMA amantzio at dynacom line:2932DETAIL: portal: ""
[59728] 2025-05-02 14:10:47.925 SMA amantzio at dynacom line:2933LOG: statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2
[59728] 2025-05-02 14:10:47.925 SMA amantzio at dynacom line:2934LOG: fetch from memory cache
[59728] 2025-05-02 14:10:47.925 SMA amantzio at dynacom line:2935DETAIL: query result fetched from cache. statement: select urlext from fb_useroptions where username=$1 and app='fb-settings-personal' and detail=$2 000200000000000200000012416368696C6C656173204D616E747A696F73000000012A0000
[59728] 2025-05-02 14:10:47.925 SMA amantzio at dynacom line:2936LOG: Sync message from frontend.
More information about the pgpool-general
mailing list