diff --git a/config-examples/odyssey-dev.conf b/config-examples/odyssey-dev.conf index 5c4ce07f1..a0080d2ed 100644 --- a/config-examples/odyssey-dev.conf +++ b/config-examples/odyssey-dev.conf @@ -1,53 +1,97 @@ - -storage "postgres_server" { - type "remote" - - host "localhost" - port 5432 -} - -database default { - user default { - authentication "none" - - storage "postgres_server" -# storage_db "db" -# storage_user "user" -# storage_password "password" - - pool "session" - - client_fwd_error yes - } -} +pid_file "/tmp/odyssey.pid" +daemonize yes unix_socket_dir "/tmp" unix_socket_mode "0644" log_format "%p %t %l [%i %s] (%c) %m\n" -log_debug yes + +log_to_stdout no + +log_syslog no +log_syslog_ident "odyssey" +log_syslog_facility "daemon" + +log_debug no log_config yes log_session yes -log_query yes +log_query no log_stats yes -daemonize yes +stats_interval 60 +log_general_stats_prom yes +log_route_stats_prom no +promhttp_server_port 7777 -log_file "/home/nikunis/odyssey/logs.txt" +workers "auto" +resolvers 1 -locks_dir "/tmp/odyssey" -graceful_die_on_errors yes -enable_online_restart no -bindwith_reuseport yes +readahead 8192 -stats_interval 60 +cache_coroutine 0 -pid_file "/tmp/odyssey.pid" +coroutine_stack_size 16 + +nodelay yes + +keepalive 15 +keepalive_keep_interval 75 +keepalive_probes 9 + +keepalive_usr_timeout 0 listen { host "*" port 6432 + backlog 128 + compression yes + tls "disable" +} + + +storage "postgres_server" { + type "remote" + host "[localhost]:5432,localhost" + port 5550 } +database default { + user default { + authentication "md5" + + password "md588cb17a149f659b9a78ec4a33cbb3c7f" + + storage "postgres_server" + pool "transaction" + pool_size 0 + +# auth_query "SELECT usename, passwd FROM pg_shadow WHERE usename=$1" +# auth_query_db "postgres" +# auth_query_user "reshke" +# storage_password "reshke" + + pool_timeout 0 + + pool_ttl 1201 + + pool_discard no + + pool_cancel yes + + pool_rollback yes +# seconds + pool_client_idle_timeout 20 +# seconds + pool_idle_in_transaction_timeout 20 + + client_fwd_error yes + application_name_add_host yes + server_lifetime 1901 + log_debug no + + quantiles "0.99,0.95,0.5" + client_max 107 + } +} storage "local" { type "local" @@ -61,3 +105,10 @@ database "console" { storage "local" } } + + +locks_dir "/tmp/odyssey" + +graceful_die_on_errors yes +enable_online_restart no +bindwith_reuseport yes \ No newline at end of file diff --git a/docker/Dockerfile b/docker/Dockerfile index e4e3b3573..a14a6ff86 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -82,8 +82,6 @@ COPY ./docker/gorm /gorm COPY ./docker/entrypoint.sh /usr/local/bin/entrypoint.sh -RUN touch ./logs.txt - RUN chmod a+x /usr/local/bin/entrypoint.sh ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 551efe8cd..72a1929ad 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -2,7 +2,7 @@ set -ex -# cd /test_dir/test && /usr/bin/odyssey_test +cd /test_dir/test && /usr/bin/odyssey_test setup @@ -11,79 +11,79 @@ ody-start /gorm/test.sh ody-stop -# # odyssey rule-address test -# /rule-address/test.sh -# if [ $? -eq 1 ] -# then -# exit 1 -# fi - -# # odyssey target session attrs test -# /tsa/tsa.sh -# if [ $? -eq 1 ] -# then -# exit 1 -# fi - -# ody-start -# /config-validation -# ody-stop - -# #ldap -# /ldap/test_ldap.sh -# if [ $? -eq 1 ] -# then -# exit 1 -# fi - -# # scram -# /scram/test_scram.sh -# if [ $? -eq 1 ] -# then -# exit 1 -# fi - -# # auth query -# /auth_query/test_auth_query.sh -# if [ $? -eq 1 ] -# then -# exit 1 -# fi - -# # odyssey hba test -# /hba/test.sh -# if [ $? -eq 1 ] -# then -# exit 1 -# fi - -# #prepared statements in transaction pooling -# /usr/bin/odyssey /etc/odyssey/pstmts.conf -# sleep 1 -# /pstmts-test - -# ody-stop - -# # lag polling -# /lagpolling/test-lag.sh -# if [ $? -eq 1 ] -# then -# exit 1 -# fi - -# /usr/bin/odyssey-asan /etc/odyssey/odyssey.conf -# ody-stop - -# # TODO: rewrite -# #/shell-test/test.sh -# /shell-test/console_role_test.sh -# /shell-test/parse_pg_options_test.sh -# /shell-test/override_pg_options_test.sh -# /shell-test/pool_size_test.sh -# ody-stop - -# ody-start -# /ody-integration-test -# ody-stop +# odyssey rule-address test +/rule-address/test.sh +if [ $? -eq 1 ] +then + exit 1 +fi + +# odyssey target session attrs test +/tsa/tsa.sh +if [ $? -eq 1 ] +then + exit 1 +fi + +ody-start +/config-validation +ody-stop + +#ldap +/ldap/test_ldap.sh +if [ $? -eq 1 ] +then + exit 1 +fi + +# scram +/scram/test_scram.sh +if [ $? -eq 1 ] +then + exit 1 +fi + +# auth query +/auth_query/test_auth_query.sh +if [ $? -eq 1 ] +then + exit 1 +fi + +# odyssey hba test +/hba/test.sh +if [ $? -eq 1 ] +then + exit 1 +fi + +#prepared statements in transaction pooling +/usr/bin/odyssey /etc/odyssey/pstmts.conf +sleep 1 +/pstmts-test + +ody-stop + +# lag polling +/lagpolling/test-lag.sh +if [ $? -eq 1 ] +then + exit 1 +fi + +/usr/bin/odyssey-asan /etc/odyssey/odyssey.conf +ody-stop + +# TODO: rewrite +#/shell-test/test.sh +/shell-test/console_role_test.sh +/shell-test/parse_pg_options_test.sh +/shell-test/override_pg_options_test.sh +/shell-test/pool_size_test.sh +ody-stop + +ody-start +/ody-integration-test +ody-stop teardown \ No newline at end of file diff --git a/docker/odyssey.conf b/docker/odyssey.conf index e8f5a2268..ad696b024 100644 --- a/docker/odyssey.conf +++ b/docker/odyssey.conf @@ -25,18 +25,16 @@ unix_socket_dir "/tmp" unix_socket_mode "0644" log_format "%p %t %l [%i %s] (%c) %m\n" -log_debug yes +log_debug no log_config yes -log_session yes -log_query yes +log_session no +log_query no log_stats yes daemonize yes -log_file "./logs.txt" - locks_dir "/tmp/odyssey" graceful_die_on_errors yes -enable_online_restart no +enable_online_restart yes bindwith_reuseport yes stats_interval 60 @@ -60,4 +58,4 @@ database "console" { pool "session" storage "local" } -} +} \ No newline at end of file diff --git a/logs.txt b/logs.txt deleted file mode 100644 index df44f1bd3..000000000 --- a/logs.txt +++ /dev/null @@ -1,1243 +0,0 @@ -62173 2024-03-18T09:29:23Z info [none none] (init) odyssey (git: ff5b6563 release) -62173 2024-03-18T09:29:23Z info [none none] (init) -62173 2024-03-18T09:29:23Z info [none none] (init) using configuration file './config-examples/odyssey-dev.conf' -62173 2024-03-18T09:29:23Z info [none none] (init) -62173 2024-03-18T09:29:23Z info [none none] (config) daemonize no -62173 2024-03-18T09:29:23Z info [none none] (config) priority 0 -62173 2024-03-18T09:29:23Z info [none none] (config) pid_file /var/run/odyssey.pid -62173 2024-03-18T09:29:23Z info [none none] (config) unix_socket_dir /tmp -62173 2024-03-18T09:29:23Z info [none none] (config) unix_socket_mode 0644 -62173 2024-03-18T09:29:23Z info [none none] (config) log_format %p %t %l [%i %s] (%c) %m\n -62173 2024-03-18T09:29:23Z info [none none] (config) log_file ./logs.txt -62173 2024-03-18T09:29:23Z info [none none] (config) log_to_stdout yes -62173 2024-03-18T09:29:23Z info [none none] (config) log_syslog no -62173 2024-03-18T09:29:23Z info [none none] (config) log_debug yes -62173 2024-03-18T09:29:23Z info [none none] (config) log_config yes -62173 2024-03-18T09:29:23Z info [none none] (config) log_session yes -62173 2024-03-18T09:29:23Z info [none none] (config) log_query yes -62173 2024-03-18T09:29:23Z info [none none] (config) log_stats yes -62173 2024-03-18T09:29:23Z info [none none] (config) stats_interval 60 -62173 2024-03-18T09:29:23Z info [none none] (config) readahead 8192 -62173 2024-03-18T09:29:23Z info [none none] (config) nodelay yes -62173 2024-03-18T09:29:23Z info [none none] (config) keepalive 15 -62173 2024-03-18T09:29:23Z info [none none] (config) client_max_routing 16 -62173 2024-03-18T09:29:23Z info [none none] (config) server_login_retry 1 -62173 2024-03-18T09:29:23Z info [none none] (config) cache_msg_gc_size 0 -62173 2024-03-18T09:29:23Z info [none none] (config) cache_coroutine 0 -62173 2024-03-18T09:29:23Z info [none none] (config) coroutine_stack_size 4 -62173 2024-03-18T09:29:23Z info [none none] (config) workers 1 -62173 2024-03-18T09:29:23Z info [none none] (config) resolvers 1 -62173 2024-03-18T09:29:23Z info [none none] (config) online restart enabled: OK -62173 2024-03-18T09:29:23Z info [none none] (config) graceful die enabled: OK -62173 2024-03-18T09:29:23Z info [none none] (config) socket bind with: SO_REUSEPORT -62173 2024-03-18T09:29:23Z info [none none] (config) SCRAM auth metod: OK -62173 2024-03-18T09:29:23Z info [none none] (config) -62173 2024-03-18T09:29:23Z info [none none] (config) listen -62173 2024-03-18T09:29:23Z info [none none] (config) host * -62173 2024-03-18T09:29:23Z info [none none] (config) port 6432 -62173 2024-03-18T09:29:23Z info [none none] (config) backlog 128 -62173 2024-03-18T09:29:23Z info [none none] (config) -62173 2024-03-18T09:29:23Z info [none none] (config) storages -62173 2024-03-18T09:29:23Z info [none none] (storage) storage types remote -62173 2024-03-18T09:29:23Z info [none none] (storage) host localhost -62173 2024-03-18T09:29:23Z info [none none] (storage) port 5432 -62173 2024-03-18T09:29:23Z info [none none] (storage) -62173 2024-03-18T09:29:23Z info [none none] (storage) storage types local -62173 2024-03-18T09:29:23Z info [none none] (storage) host -62173 2024-03-18T09:29:23Z info [none none] (storage) port 0 -62173 2024-03-18T09:29:23Z info [none none] (storage) -62173 2024-03-18T09:29:23Z info [none none] (rules) -62173 2024-03-18T09:29:23Z info [none none] (rules) authentication none -62173 2024-03-18T09:29:23Z info [none none] (rules) pool session -62173 2024-03-18T09:29:23Z info [none none] (rules) pool routing client visible -62173 2024-03-18T09:29:23Z info [none none] (rules) pool size 0 -62173 2024-03-18T09:29:23Z info [none none] (rules) pool timeout 0 -62173 2024-03-18T09:29:23Z info [none none] (rules) pool ttl 0 -62173 2024-03-18T09:29:23Z info [none none] (rules) pool discard yes -62173 2024-03-18T09:29:23Z info [none none] (rules) pool smart discard no -62173 2024-03-18T09:29:23Z info [none none] (rules) pool cancel yes -62173 2024-03-18T09:29:23Z info [none none] (rules) pool rollback yes -62173 2024-03-18T09:29:23Z info [none none] (rules) pool client_idle_timeout 0 -62173 2024-03-18T09:29:23Z info [none none] (rules) pool idle_in_transaction_timeout 0 -62173 2024-03-18T09:29:23Z info [none none] (rules) client_fwd_error yes -62173 2024-03-18T09:29:23Z info [none none] (rules) reserve_session_server_connection yes -62173 2024-03-18T09:29:23Z info [none none] (rules) storage postgres_server -62173 2024-03-18T09:29:23Z info [none none] (rules) type remote -62173 2024-03-18T09:29:23Z info [none none] (rules) host localhost -62173 2024-03-18T09:29:23Z info [none none] (rules) port 5432 -62173 2024-03-18T09:29:23Z info [none none] (rules) log_debug yes -62173 2024-03-18T09:29:23Z info [none none] (rules) log_query yes -62173 2024-03-18T09:29:23Z info [none none] (rules) options: todo -62173 2024-03-18T09:29:23Z info [none none] (rules) -62173 2024-03-18T09:29:23Z info [none none] (rules) -62173 2024-03-18T09:29:23Z info [none none] (rules) authentication none -62173 2024-03-18T09:29:23Z info [none none] (rules) pool session -62173 2024-03-18T09:29:23Z info [none none] (rules) pool routing client visible -62173 2024-03-18T09:29:23Z info [none none] (rules) pool size 0 -62173 2024-03-18T09:29:23Z info [none none] (rules) pool timeout 0 -62173 2024-03-18T09:29:23Z info [none none] (rules) pool ttl 0 -62173 2024-03-18T09:29:23Z info [none none] (rules) pool discard yes -62173 2024-03-18T09:29:23Z info [none none] (rules) pool smart discard no -62173 2024-03-18T09:29:23Z info [none none] (rules) pool cancel yes -62173 2024-03-18T09:29:23Z info [none none] (rules) pool rollback yes -62173 2024-03-18T09:29:23Z info [none none] (rules) pool client_idle_timeout 0 -62173 2024-03-18T09:29:23Z info [none none] (rules) pool idle_in_transaction_timeout 0 -62173 2024-03-18T09:29:23Z info [none none] (rules) client_fwd_error no -62173 2024-03-18T09:29:23Z info [none none] (rules) reserve_session_server_connection yes -62173 2024-03-18T09:29:23Z info [none none] (rules) storage local -62173 2024-03-18T09:29:23Z info [none none] (rules) type local -62173 2024-03-18T09:29:23Z info [none none] (rules) host -62173 2024-03-18T09:29:23Z info [none none] (rules) port 0 -62173 2024-03-18T09:29:23Z info [none none] (rules) log_debug yes -62173 2024-03-18T09:29:23Z info [none none] (rules) log_query yes -62173 2024-03-18T09:29:23Z info [none none] (rules) options: todo -62173 2024-03-18T09:29:23Z info [none none] (rules) -62173 2024-03-18T09:29:23Z error [none none] (init) failed to create pid file /var/run/odyssey.pid: Permission denied -68791 2024-03-18T09:32:06Z info [none none] (init) odyssey (git: ff5b6563 release) -68791 2024-03-18T09:32:06Z info [none none] (init) -68791 2024-03-18T09:32:06Z info [none none] (init) using configuration file './config-examples/odyssey-dev.conf' -68791 2024-03-18T09:32:06Z info [none none] (init) -68791 2024-03-18T09:32:06Z info [none none] (config) daemonize no -68791 2024-03-18T09:32:06Z info [none none] (config) priority 0 -68791 2024-03-18T09:32:06Z info [none none] (config) pid_file /tmp/odyssey.pid -68791 2024-03-18T09:32:06Z info [none none] (config) unix_socket_dir /tmp -68791 2024-03-18T09:32:06Z info [none none] (config) unix_socket_mode 0644 -68791 2024-03-18T09:32:06Z info [none none] (config) log_format %p %t %l [%i %s] (%c) %m\n -68791 2024-03-18T09:32:06Z info [none none] (config) log_file ./logs.txt -68791 2024-03-18T09:32:06Z info [none none] (config) log_to_stdout yes -68791 2024-03-18T09:32:06Z info [none none] (config) log_syslog no -68791 2024-03-18T09:32:06Z info [none none] (config) log_debug yes -68791 2024-03-18T09:32:06Z info [none none] (config) log_config yes -68791 2024-03-18T09:32:06Z info [none none] (config) log_session yes -68791 2024-03-18T09:32:06Z info [none none] (config) log_query yes -68791 2024-03-18T09:32:06Z info [none none] (config) log_stats yes -68791 2024-03-18T09:32:06Z info [none none] (config) stats_interval 60 -68791 2024-03-18T09:32:06Z info [none none] (config) readahead 8192 -68791 2024-03-18T09:32:06Z info [none none] (config) nodelay yes -68791 2024-03-18T09:32:06Z info [none none] (config) keepalive 15 -68791 2024-03-18T09:32:06Z info [none none] (config) client_max_routing 16 -68791 2024-03-18T09:32:06Z info [none none] (config) server_login_retry 1 -68791 2024-03-18T09:32:06Z info [none none] (config) cache_msg_gc_size 0 -68791 2024-03-18T09:32:06Z info [none none] (config) cache_coroutine 0 -68791 2024-03-18T09:32:06Z info [none none] (config) coroutine_stack_size 4 -68791 2024-03-18T09:32:06Z info [none none] (config) workers 1 -68791 2024-03-18T09:32:06Z info [none none] (config) resolvers 1 -68791 2024-03-18T09:32:06Z info [none none] (config) online restart enabled: OK -68791 2024-03-18T09:32:06Z info [none none] (config) graceful die enabled: OK -68791 2024-03-18T09:32:06Z info [none none] (config) socket bind with: SO_REUSEPORT -68791 2024-03-18T09:32:06Z info [none none] (config) SCRAM auth metod: OK -68791 2024-03-18T09:32:06Z info [none none] (config) -68791 2024-03-18T09:32:06Z info [none none] (config) listen -68791 2024-03-18T09:32:06Z info [none none] (config) host * -68791 2024-03-18T09:32:06Z info [none none] (config) port 6432 -68791 2024-03-18T09:32:06Z info [none none] (config) backlog 128 -68791 2024-03-18T09:32:06Z info [none none] (config) -68791 2024-03-18T09:32:06Z info [none none] (config) storages -68791 2024-03-18T09:32:06Z info [none none] (storage) storage types remote -68791 2024-03-18T09:32:06Z info [none none] (storage) host localhost -68791 2024-03-18T09:32:06Z info [none none] (storage) port 5432 -68791 2024-03-18T09:32:06Z info [none none] (storage) -68791 2024-03-18T09:32:06Z info [none none] (storage) storage types local -68791 2024-03-18T09:32:06Z info [none none] (storage) host -68791 2024-03-18T09:32:06Z info [none none] (storage) port 0 -68791 2024-03-18T09:32:06Z info [none none] (storage) -68791 2024-03-18T09:32:06Z info [none none] (rules) -68791 2024-03-18T09:32:06Z info [none none] (rules) authentication none -68791 2024-03-18T09:32:06Z info [none none] (rules) pool session -68791 2024-03-18T09:32:06Z info [none none] (rules) pool routing client visible -68791 2024-03-18T09:32:06Z info [none none] (rules) pool size 0 -68791 2024-03-18T09:32:06Z info [none none] (rules) pool timeout 0 -68791 2024-03-18T09:32:06Z info [none none] (rules) pool ttl 0 -68791 2024-03-18T09:32:06Z info [none none] (rules) pool discard yes -68791 2024-03-18T09:32:06Z info [none none] (rules) pool smart discard no -68791 2024-03-18T09:32:06Z info [none none] (rules) pool cancel yes -68791 2024-03-18T09:32:06Z info [none none] (rules) pool rollback yes -68791 2024-03-18T09:32:06Z info [none none] (rules) pool client_idle_timeout 0 -68791 2024-03-18T09:32:06Z info [none none] (rules) pool idle_in_transaction_timeout 0 -68791 2024-03-18T09:32:06Z info [none none] (rules) client_fwd_error yes -68791 2024-03-18T09:32:06Z info [none none] (rules) reserve_session_server_connection yes -68791 2024-03-18T09:32:06Z info [none none] (rules) storage postgres_server -68791 2024-03-18T09:32:06Z info [none none] (rules) type remote -68791 2024-03-18T09:32:06Z info [none none] (rules) host localhost -68791 2024-03-18T09:32:06Z info [none none] (rules) port 5432 -68791 2024-03-18T09:32:06Z info [none none] (rules) log_debug yes -68791 2024-03-18T09:32:06Z info [none none] (rules) log_query yes -68791 2024-03-18T09:32:06Z info [none none] (rules) options: todo -68791 2024-03-18T09:32:06Z info [none none] (rules) -68791 2024-03-18T09:32:06Z info [none none] (rules) -68791 2024-03-18T09:32:06Z info [none none] (rules) authentication none -68791 2024-03-18T09:32:06Z info [none none] (rules) pool session -68791 2024-03-18T09:32:06Z info [none none] (rules) pool routing client visible -68791 2024-03-18T09:32:06Z info [none none] (rules) pool size 0 -68791 2024-03-18T09:32:06Z info [none none] (rules) pool timeout 0 -68791 2024-03-18T09:32:06Z info [none none] (rules) pool ttl 0 -68791 2024-03-18T09:32:06Z info [none none] (rules) pool discard yes -68791 2024-03-18T09:32:06Z info [none none] (rules) pool smart discard no -68791 2024-03-18T09:32:06Z info [none none] (rules) pool cancel yes -68791 2024-03-18T09:32:06Z info [none none] (rules) pool rollback yes -68791 2024-03-18T09:32:06Z info [none none] (rules) pool client_idle_timeout 0 -68791 2024-03-18T09:32:06Z info [none none] (rules) pool idle_in_transaction_timeout 0 -68791 2024-03-18T09:32:06Z info [none none] (rules) client_fwd_error no -68791 2024-03-18T09:32:06Z info [none none] (rules) reserve_session_server_connection yes -68791 2024-03-18T09:32:06Z info [none none] (rules) storage local -68791 2024-03-18T09:32:06Z info [none none] (rules) type local -68791 2024-03-18T09:32:06Z info [none none] (rules) host -68791 2024-03-18T09:32:06Z info [none none] (rules) port 0 -68791 2024-03-18T09:32:06Z info [none none] (rules) log_debug yes -68791 2024-03-18T09:32:06Z info [none none] (rules) log_query yes -68791 2024-03-18T09:32:06Z info [none none] (rules) options: todo -68791 2024-03-18T09:32:06Z info [none none] (rules) -68791 2024-03-18T09:32:06Z info [none none] (server) listening on 0.0.0.0:6432 -68791 2024-03-18T09:32:06Z info [none none] (server) listening on [::]:6432 -68791 2024-03-18T09:32:06Z error [none none] (watchdog) failed to create ctrl lock file in /tmp/odyssey (errno: 2) try to specify another locks dir or disable online restart feature -68791 2024-03-18T09:32:06Z info [none none] (system) SIG_GRACEFUL_SHUTDOWN received -68791 2024-03-18T09:32:06Z info [none none] (config) stop to accepting new connections -68791 2024-03-18T09:32:09Z info [none none] (system) SIGINT received, shutting down -68833 2024-03-18T09:32:11Z info [none none] (init) odyssey (git: ff5b6563 release) -68833 2024-03-18T09:32:11Z info [none none] (init) -68833 2024-03-18T09:32:11Z info [none none] (init) using configuration file './config-examples/odyssey-dev.conf' -68833 2024-03-18T09:32:11Z info [none none] (init) -68833 2024-03-18T09:32:11Z info [none none] (config) daemonize no -68833 2024-03-18T09:32:11Z info [none none] (config) priority 0 -68833 2024-03-18T09:32:11Z info [none none] (config) pid_file /tmp/odyssey.pid -68833 2024-03-18T09:32:11Z info [none none] (config) unix_socket_dir /tmp -68833 2024-03-18T09:32:11Z info [none none] (config) unix_socket_mode 0644 -68833 2024-03-18T09:32:11Z info [none none] (config) log_format %p %t %l [%i %s] (%c) %m\n -68833 2024-03-18T09:32:11Z info [none none] (config) log_file ./logs.txt -68833 2024-03-18T09:32:11Z info [none none] (config) log_to_stdout yes -68833 2024-03-18T09:32:11Z info [none none] (config) log_syslog no -68833 2024-03-18T09:32:11Z info [none none] (config) log_debug yes -68833 2024-03-18T09:32:11Z info [none none] (config) log_config yes -68833 2024-03-18T09:32:11Z info [none none] (config) log_session yes -68833 2024-03-18T09:32:11Z info [none none] (config) log_query yes -68833 2024-03-18T09:32:11Z info [none none] (config) log_stats yes -68833 2024-03-18T09:32:11Z info [none none] (config) stats_interval 60 -68833 2024-03-18T09:32:11Z info [none none] (config) readahead 8192 -68833 2024-03-18T09:32:11Z info [none none] (config) nodelay yes -68833 2024-03-18T09:32:11Z info [none none] (config) keepalive 15 -68833 2024-03-18T09:32:11Z info [none none] (config) client_max_routing 16 -68833 2024-03-18T09:32:11Z info [none none] (config) server_login_retry 1 -68833 2024-03-18T09:32:11Z info [none none] (config) cache_msg_gc_size 0 -68833 2024-03-18T09:32:11Z info [none none] (config) cache_coroutine 0 -68833 2024-03-18T09:32:11Z info [none none] (config) coroutine_stack_size 4 -68833 2024-03-18T09:32:11Z info [none none] (config) workers 1 -68833 2024-03-18T09:32:11Z info [none none] (config) resolvers 1 -68833 2024-03-18T09:32:11Z info [none none] (config) online restart enabled: OK -68833 2024-03-18T09:32:11Z info [none none] (config) graceful die enabled: OK -68833 2024-03-18T09:32:11Z info [none none] (config) socket bind with: SO_REUSEPORT -68833 2024-03-18T09:32:11Z info [none none] (config) SCRAM auth metod: OK -68833 2024-03-18T09:32:11Z info [none none] (config) -68833 2024-03-18T09:32:11Z info [none none] (config) listen -68833 2024-03-18T09:32:11Z info [none none] (config) host * -68833 2024-03-18T09:32:11Z info [none none] (config) port 6432 -68833 2024-03-18T09:32:11Z info [none none] (config) backlog 128 -68833 2024-03-18T09:32:11Z info [none none] (config) -68833 2024-03-18T09:32:11Z info [none none] (config) storages -68833 2024-03-18T09:32:11Z info [none none] (storage) storage types remote -68833 2024-03-18T09:32:11Z info [none none] (storage) host localhost -68833 2024-03-18T09:32:11Z info [none none] (storage) port 5432 -68833 2024-03-18T09:32:11Z info [none none] (storage) -68833 2024-03-18T09:32:11Z info [none none] (storage) storage types local -68833 2024-03-18T09:32:11Z info [none none] (storage) host -68833 2024-03-18T09:32:11Z info [none none] (storage) port 0 -68833 2024-03-18T09:32:11Z info [none none] (storage) -68833 2024-03-18T09:32:11Z info [none none] (rules) -68833 2024-03-18T09:32:11Z info [none none] (rules) authentication none -68833 2024-03-18T09:32:11Z info [none none] (rules) pool session -68833 2024-03-18T09:32:11Z info [none none] (rules) pool routing client visible -68833 2024-03-18T09:32:11Z info [none none] (rules) pool size 0 -68833 2024-03-18T09:32:11Z info [none none] (rules) pool timeout 0 -68833 2024-03-18T09:32:11Z info [none none] (rules) pool ttl 0 -68833 2024-03-18T09:32:11Z info [none none] (rules) pool discard yes -68833 2024-03-18T09:32:11Z info [none none] (rules) pool smart discard no -68833 2024-03-18T09:32:11Z info [none none] (rules) pool cancel yes -68833 2024-03-18T09:32:11Z info [none none] (rules) pool rollback yes -68833 2024-03-18T09:32:11Z info [none none] (rules) pool client_idle_timeout 0 -68833 2024-03-18T09:32:11Z info [none none] (rules) pool idle_in_transaction_timeout 0 -68833 2024-03-18T09:32:11Z info [none none] (rules) client_fwd_error yes -68833 2024-03-18T09:32:11Z info [none none] (rules) reserve_session_server_connection yes -68833 2024-03-18T09:32:11Z info [none none] (rules) storage postgres_server -68833 2024-03-18T09:32:11Z info [none none] (rules) type remote -68833 2024-03-18T09:32:11Z info [none none] (rules) host localhost -68833 2024-03-18T09:32:11Z info [none none] (rules) port 5432 -68833 2024-03-18T09:32:11Z info [none none] (rules) log_debug yes -68833 2024-03-18T09:32:11Z info [none none] (rules) log_query yes -68833 2024-03-18T09:32:11Z info [none none] (rules) options: todo -68833 2024-03-18T09:32:11Z info [none none] (rules) -68833 2024-03-18T09:32:11Z info [none none] (rules) -68833 2024-03-18T09:32:11Z info [none none] (rules) authentication none -68833 2024-03-18T09:32:11Z info [none none] (rules) pool session -68833 2024-03-18T09:32:11Z info [none none] (rules) pool routing client visible -68833 2024-03-18T09:32:11Z info [none none] (rules) pool size 0 -68833 2024-03-18T09:32:11Z info [none none] (rules) pool timeout 0 -68833 2024-03-18T09:32:11Z info [none none] (rules) pool ttl 0 -68833 2024-03-18T09:32:11Z info [none none] (rules) pool discard yes -68833 2024-03-18T09:32:11Z info [none none] (rules) pool smart discard no -68833 2024-03-18T09:32:11Z info [none none] (rules) pool cancel yes -68833 2024-03-18T09:32:11Z info [none none] (rules) pool rollback yes -68833 2024-03-18T09:32:11Z info [none none] (rules) pool client_idle_timeout 0 -68833 2024-03-18T09:32:11Z info [none none] (rules) pool idle_in_transaction_timeout 0 -68833 2024-03-18T09:32:11Z info [none none] (rules) client_fwd_error no -68833 2024-03-18T09:32:11Z info [none none] (rules) reserve_session_server_connection yes -68833 2024-03-18T09:32:11Z info [none none] (rules) storage local -68833 2024-03-18T09:32:11Z info [none none] (rules) type local -68833 2024-03-18T09:32:11Z info [none none] (rules) host -68833 2024-03-18T09:32:11Z info [none none] (rules) port 0 -68833 2024-03-18T09:32:11Z info [none none] (rules) log_debug yes -68833 2024-03-18T09:32:11Z info [none none] (rules) log_query yes -68833 2024-03-18T09:32:11Z info [none none] (rules) options: todo -68833 2024-03-18T09:32:11Z info [none none] (rules) -68833 2024-03-18T09:32:11Z info [none none] (server) listening on 0.0.0.0:6432 -68833 2024-03-18T09:32:11Z info [none none] (server) listening on [::]:6432 -68833 2024-03-18T09:32:11Z error [none none] (watchdog) failed to create ctrl lock file in /tmp/odyssey (errno: 2) try to specify another locks dir or disable online restart feature -68833 2024-03-18T09:32:11Z info [none none] (system) SIG_GRACEFUL_SHUTDOWN received -68833 2024-03-18T09:32:11Z info [none none] (config) stop to accepting new connections -68833 2024-03-18T09:32:28Z info [c37284613976b none] (startup) new client connection 127.0.0.1:51154 -68833 2024-03-18T09:32:28Z debug [none none] (routing) matching rule: default_db default_user all with client visible routing type to external client -68833 2024-03-18T09:32:28Z info [c37284613976b none] (startup) route 'spqr-console.spqr-console' to 'default_db.default_user' -68833 2024-03-18T09:32:28Z info [c37284613976b none] (auth) ip '127.0.0.1' user '(unknown database).(unknown user)': host based authentication allowed -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (setup) client c37284613 attached to s87d7b53a -68833 2024-03-18T09:32:28Z info [c37284613976b s87d7b53a9ceb] (setup) new server connection localhost:5432 (connect time: 525 usec, resolve time: 453 usec) -68833 2024-03-18T09:32:28Z debug [none s87d7b53a9ceb] (startup) startup server connection with user spqr-console & database spqr-console -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: Authentication -68833 2024-03-18T09:32:28Z debug [none s87d7b53a9ceb] (auth) recieved msg type 0 -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ParameterStatus -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: BackendKeyData -68833 2024-03-18T09:32:28Z debug [c37284613976b s87d7b53a9ceb] (startup) received packet type: ReadyForQuery -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) sending params: -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) TimeZone = Etc/UTC -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) standard_conforming_strings = on -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) session_authorization = spqr-console -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) server_version = 15.4 -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) server_encoding = UTF8 -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) is_superuser = off -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) IntervalStyle = postgres -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) integer_datetimes = on -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) default_transaction_read_only = off -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) DateStyle = ISO, MDY -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) client_encoding = UTF8 -68833 2024-03-18T09:32:28Z debug [c37284613976b none] (setup) application_name = -68833 2024-03-18T09:32:28Z info [c37284613976b none] (setup) login time: 9373 microseconds -68833 2024-03-18T09:32:28Z info [c37284613976b none] (setup) client connection from 127.0.0.1:51154 to route default_db.default_user accepted -68833 2024-03-18T09:32:28Z info [c37284613976b none] (main) client disconnected (read/write error, addr 127.0.0.1:51154): Resource temporarily unavailable, status OD_ECLIENT_READ -68833 2024-03-18T09:32:29Z info [c74c79c1427ed none] (startup) new client connection [::1]:41154 -68833 2024-03-18T09:32:29Z debug [c74c79c1427ed none] (tls) ssl request -68833 2024-03-18T09:32:29Z debug [c74c79c1427ed none] (tls) is disabled, ignoring -68833 2024-03-18T09:33:10Z info [none none] (stats) system worker: msg (5 allocated, 0 cached, 1 freed, 0 cache_size), coroutines (1 active, 0 cached) startup errors 0 -68833 2024-03-18T09:33:10Z info [none none] (stats) clients 0 -68833 2024-03-18T09:33:10Z info [none none] (stats) worker[0]: msg (26 allocated, 0 cached, 30 freed, 0 cache_size), coroutines (1 active, 0 cached), clients_processed: 2 -68833 2024-03-18T09:34:10Z info [none none] (stats) system worker: msg (6 allocated, 0 cached, 1 freed, 0 cache_size), coroutines (1 active, 0 cached) startup errors 0 -68833 2024-03-18T09:34:10Z info [none none] (stats) clients 0 -68833 2024-03-18T09:34:10Z info [none none] (stats) worker[0]: msg (26 allocated, 0 cached, 31 freed, 0 cache_size), coroutines (1 active, 0 cached), clients_processed: 2 -68833 2024-03-18T09:35:10Z info [none none] (stats) system worker: msg (7 allocated, 0 cached, 1 freed, 0 cache_size), coroutines (1 active, 0 cached) startup errors 0 -68833 2024-03-18T09:35:10Z info [none none] (stats) clients 0 -68833 2024-03-18T09:35:10Z info [none none] (stats) worker[0]: msg (26 allocated, 0 cached, 32 freed, 0 cache_size), coroutines (1 active, 0 cached), clients_processed: 2 -68833 2024-03-18T09:36:10Z info [none none] (stats) system worker: msg (8 allocated, 0 cached, 1 freed, 0 cache_size), coroutines (1 active, 0 cached) startup errors 0 -68833 2024-03-18T09:36:10Z info [none none] (stats) clients 0 -68833 2024-03-18T09:36:10Z info [none none] (stats) worker[0]: msg (26 allocated, 0 cached, 33 freed, 0 cache_size), coroutines (1 active, 0 cached), clients_processed: 2 -68833 2024-03-18T09:37:10Z info [none none] (stats) system worker: msg (9 allocated, 0 cached, 1 freed, 0 cache_size), coroutines (1 active, 0 cached) startup errors 0 -68833 2024-03-18T09:37:10Z info [none none] (stats) clients 0 -68833 2024-03-18T09:37:10Z info [none none] (stats) worker[0]: msg (26 allocated, 0 cached, 34 freed, 0 cache_size), coroutines (1 active, 0 cached), clients_processed: 2 -68833 2024-03-18T09:38:10Z info [none none] (stats) system worker: msg (10 allocated, 0 cached, 1 freed, 0 cache_size), coroutines (1 active, 0 cached) startup errors 0 -68833 2024-03-18T09:38:10Z info [none none] (stats) clients 0 -68833 2024-03-18T09:38:10Z info [none none] (stats) worker[0]: msg (26 allocated, 0 cached, 35 freed, 0 cache_size), coroutines (1 active, 0 cached), clients_processed: 2 -68833 2024-03-18T09:39:10Z info [none none] (stats) system worker: msg (11 allocated, 0 cached, 1 freed, 0 cache_size), coroutines (1 active, 0 cached) startup errors 0 -68833 2024-03-18T09:39:10Z info [none none] (stats) clients 0 -68833 2024-03-18T09:39:10Z info [none none] (stats) worker[0]: msg (26 allocated, 0 cached, 36 freed, 0 cache_size), coroutines (1 active, 0 cached), clients_processed: 2 -68833 2024-03-18T09:40:10Z info [none none] (stats) system worker: msg (12 allocated, 0 cached, 1 freed, 0 cache_size), coroutines (1 active, 0 cached) startup errors 0 -68833 2024-03-18T09:40:10Z info [none none] (stats) clients 0 -68833 2024-03-18T09:40:10Z info [none none] (stats) worker[0]: msg (26 allocated, 0 cached, 37 freed, 0 cache_size), coroutines (1 active, 0 cached), clients_processed: 2 -68833 2024-03-18T09:41:10Z info [none none] (stats) system worker: msg (13 allocated, 0 cached, 1 freed, 0 cache_size), coroutines (1 active, 0 cached) startup errors 0 -68833 2024-03-18T09:41:10Z info [none none] (stats) clients 0 -68833 2024-03-18T09:41:10Z info [none none] (stats) worker[0]: msg (26 allocated, 0 cached, 38 freed, 0 cache_size), coroutines (1 active, 0 cached), clients_processed: 2 -68833 2024-03-18T09:41:41Z info [none none] (system) SIGINT received, shutting down -89998 2024-03-18T09:48:41Z info [none none] (init) odyssey (git: ff5b6563 release) -89998 2024-03-18T09:48:41Z info [none none] (init) -89998 2024-03-18T09:48:41Z info [none none] (init) using configuration file './config-examples/odyssey-dev.conf' -89998 2024-03-18T09:48:41Z info [none none] (init) -89998 2024-03-18T09:48:41Z info [none none] (config) daemonize no -89998 2024-03-18T09:48:41Z info [none none] (config) priority 0 -89998 2024-03-18T09:48:41Z info [none none] (config) pid_file /tmp/odyssey.pid -89998 2024-03-18T09:48:41Z info [none none] (config) unix_socket_dir /tmp -89998 2024-03-18T09:48:41Z info [none none] (config) unix_socket_mode 0644 -89998 2024-03-18T09:48:41Z info [none none] (config) log_format %p %t %l [%i %s] (%c) %m\n -89998 2024-03-18T09:48:41Z info [none none] (config) log_file /home/nikunis/odyssey/logs.txt -89998 2024-03-18T09:48:41Z info [none none] (config) log_to_stdout yes -89998 2024-03-18T09:48:41Z info [none none] (config) log_syslog no -89998 2024-03-18T09:48:41Z info [none none] (config) log_debug yes -89998 2024-03-18T09:48:41Z info [none none] (config) log_config yes -89998 2024-03-18T09:48:41Z info [none none] (config) log_session yes -89998 2024-03-18T09:48:41Z info [none none] (config) log_query yes -89998 2024-03-18T09:48:41Z info [none none] (config) log_stats yes -89998 2024-03-18T09:48:41Z info [none none] (config) stats_interval 60 -89998 2024-03-18T09:48:41Z info [none none] (config) readahead 8192 -89998 2024-03-18T09:48:41Z info [none none] (config) nodelay yes -89998 2024-03-18T09:48:41Z info [none none] (config) keepalive 15 -89998 2024-03-18T09:48:41Z info [none none] (config) client_max_routing 16 -89998 2024-03-18T09:48:41Z info [none none] (config) server_login_retry 1 -89998 2024-03-18T09:48:41Z info [none none] (config) cache_msg_gc_size 0 -89998 2024-03-18T09:48:41Z info [none none] (config) cache_coroutine 0 -89998 2024-03-18T09:48:41Z info [none none] (config) coroutine_stack_size 4 -89998 2024-03-18T09:48:41Z info [none none] (config) workers 1 -89998 2024-03-18T09:48:41Z info [none none] (config) resolvers 1 -89998 2024-03-18T09:48:41Z info [none none] (config) graceful die enabled: OK -89998 2024-03-18T09:48:41Z info [none none] (config) socket bind with: SO_REUSEPORT -89998 2024-03-18T09:48:41Z info [none none] (config) SCRAM auth metod: OK -89998 2024-03-18T09:48:41Z info [none none] (config) -89998 2024-03-18T09:48:41Z info [none none] (config) listen -89998 2024-03-18T09:48:41Z info [none none] (config) host * -89998 2024-03-18T09:48:41Z info [none none] (config) port 6432 -89998 2024-03-18T09:48:41Z info [none none] (config) backlog 128 -89998 2024-03-18T09:48:41Z info [none none] (config) -89998 2024-03-18T09:48:41Z info [none none] (config) storages -89998 2024-03-18T09:48:41Z info [none none] (storage) storage types remote -89998 2024-03-18T09:48:41Z info [none none] (storage) host localhost -89998 2024-03-18T09:48:41Z info [none none] (storage) port 5432 -89998 2024-03-18T09:48:41Z info [none none] (storage) -89998 2024-03-18T09:48:41Z info [none none] (storage) storage types local -89998 2024-03-18T09:48:41Z info [none none] (storage) host -89998 2024-03-18T09:48:41Z info [none none] (storage) port 0 -89998 2024-03-18T09:48:41Z info [none none] (storage) -89998 2024-03-18T09:48:41Z info [none none] (rules) -89998 2024-03-18T09:48:41Z info [none none] (rules) authentication none -89998 2024-03-18T09:48:41Z info [none none] (rules) pool session -89998 2024-03-18T09:48:41Z info [none none] (rules) pool routing client visible -89998 2024-03-18T09:48:41Z info [none none] (rules) pool size 0 -89998 2024-03-18T09:48:41Z info [none none] (rules) pool timeout 0 -89998 2024-03-18T09:48:41Z info [none none] (rules) pool ttl 0 -89998 2024-03-18T09:48:41Z info [none none] (rules) pool discard yes -89998 2024-03-18T09:48:41Z info [none none] (rules) pool smart discard no -89998 2024-03-18T09:48:41Z info [none none] (rules) pool cancel yes -89998 2024-03-18T09:48:41Z info [none none] (rules) pool rollback yes -89998 2024-03-18T09:48:41Z info [none none] (rules) pool client_idle_timeout 0 -89998 2024-03-18T09:48:41Z info [none none] (rules) pool idle_in_transaction_timeout 0 -89998 2024-03-18T09:48:41Z info [none none] (rules) client_fwd_error yes -89998 2024-03-18T09:48:41Z info [none none] (rules) reserve_session_server_connection yes -89998 2024-03-18T09:48:41Z info [none none] (rules) storage postgres_server -89998 2024-03-18T09:48:41Z info [none none] (rules) type remote -89998 2024-03-18T09:48:41Z info [none none] (rules) host localhost -89998 2024-03-18T09:48:41Z info [none none] (rules) port 5432 -89998 2024-03-18T09:48:41Z info [none none] (rules) log_debug yes -89998 2024-03-18T09:48:41Z info [none none] (rules) log_query yes -89998 2024-03-18T09:48:41Z info [none none] (rules) options: todo -89998 2024-03-18T09:48:41Z info [none none] (rules) -89998 2024-03-18T09:48:41Z info [none none] (rules) -89998 2024-03-18T09:48:41Z info [none none] (rules) authentication none -89998 2024-03-18T09:48:41Z info [none none] (rules) pool session -89998 2024-03-18T09:48:41Z info [none none] (rules) pool routing client visible -89998 2024-03-18T09:48:41Z info [none none] (rules) pool size 0 -89998 2024-03-18T09:48:41Z info [none none] (rules) pool timeout 0 -89998 2024-03-18T09:48:41Z info [none none] (rules) pool ttl 0 -89998 2024-03-18T09:48:41Z info [none none] (rules) pool discard yes -89998 2024-03-18T09:48:41Z info [none none] (rules) pool smart discard no -89998 2024-03-18T09:48:41Z info [none none] (rules) pool cancel yes -89998 2024-03-18T09:48:41Z info [none none] (rules) pool rollback yes -89998 2024-03-18T09:48:41Z info [none none] (rules) pool client_idle_timeout 0 -89998 2024-03-18T09:48:41Z info [none none] (rules) pool idle_in_transaction_timeout 0 -89998 2024-03-18T09:48:41Z info [none none] (rules) client_fwd_error no -89998 2024-03-18T09:48:41Z info [none none] (rules) reserve_session_server_connection yes -89998 2024-03-18T09:48:41Z info [none none] (rules) storage local -89998 2024-03-18T09:48:41Z info [none none] (rules) type local -89998 2024-03-18T09:48:41Z info [none none] (rules) host -89998 2024-03-18T09:48:41Z info [none none] (rules) port 0 -89998 2024-03-18T09:48:41Z info [none none] (rules) log_debug yes -89998 2024-03-18T09:48:41Z info [none none] (rules) log_query yes -89998 2024-03-18T09:48:41Z info [none none] (rules) options: todo -89998 2024-03-18T09:48:41Z info [none none] (rules) -89998 2024-03-18T09:48:41Z info [none none] (server) listening on 0.0.0.0:6432 -89998 2024-03-18T09:48:41Z info [none none] (server) listening on [::]:6432 -89998 2024-03-18T09:49:25Z info [c950795279dfa none] (startup) new client connection 127.0.0.1:59062 -89998 2024-03-18T09:49:25Z debug [c950795279dfa none] (tls) ssl request -89998 2024-03-18T09:49:25Z debug [c950795279dfa none] (tls) is disabled, ignoring -89998 2024-03-18T09:49:25Z info [c0211f0589dd2 none] (startup) new client connection 127.0.0.1:59066 -89998 2024-03-18T09:49:25Z debug [c0211f0589dd2 none] (tls) ssl request -89998 2024-03-18T09:49:25Z debug [c0211f0589dd2 none] (tls) is disabled, ignoring -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (startup) new client connection 127.0.0.1:59074 -89998 2024-03-18T09:49:25Z debug [none none] (routing) matching rule: default_db default_user all with client visible routing type to external client -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (startup) route 'spqr-console.spqr-console' to 'default_db.default_user' -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (auth) ip '127.0.0.1' user '(unknown database).(unknown user)': host based authentication allowed -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (setup) client c4721e804 attached to s92d33d48 -89998 2024-03-18T09:49:25Z info [c4721e80486ff s92d33d484b1e] (setup) new server connection localhost:5432 (connect time: 426 usec, resolve time: 357 usec) -89998 2024-03-18T09:49:25Z debug [none s92d33d484b1e] (startup) startup server connection with user spqr-console & database spqr-console -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: Authentication -89998 2024-03-18T09:49:25Z debug [none s92d33d484b1e] (auth) recieved msg type 0 -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: BackendKeyData -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s92d33d484b1e] (startup) received packet type: ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) sending params: -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) TimeZone = UTC -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) standard_conforming_strings = on -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) session_authorization = spqr-console -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) server_version = 15.4 -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) server_encoding = UTF8 -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) is_superuser = off -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) IntervalStyle = postgres -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) integer_datetimes = on -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) default_transaction_read_only = off -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) DateStyle = ISO, MDY -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) client_encoding = UTF8 -89998 2024-03-18T09:49:25Z debug [c4721e80486ff none] (setup) application_name = -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (setup) login time: 7019 microseconds -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (setup) client connection from 127.0.0.1:59074 to route default_db.default_user accepted -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) client c4721e804 attached to s0356c96e -89998 2024-03-18T09:49:25Z info [c4721e80486ff s0356c96e5f7d] (main) new server connection localhost:5432 (connect time: 2415 usec, resolve time: 2356 usec) -89998 2024-03-18T09:49:25Z debug [none s0356c96e5f7d] (startup) startup server connection with user spqr-console & database spqr-console -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: Authentication -89998 2024-03-18T09:49:25Z debug [none s0356c96e5f7d] (auth) recieved msg type 0 -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: BackendKeyData -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (startup) received packet type: ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) deploy: SET TimeZone=E'UTC'; -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (remote client) Query -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (query) -- ping -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) TimeZone = UTC -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) EmptyQueryResponse -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) query time: 234 microseconds -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (remote client) Query -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (query) SELECT count(*) FROM information_schema.tables WHERE table_schema = CURRENT_SCHEMA() AND table_name = 'people' AND table_type = 'BASE TABLE' -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) DataRow -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) query time: 8214 microseconds -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (remote client) Query -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (query) CREATE TABLE "people" ("id" bigserial,"first_name" text,"last_name" text,"email" text,PRIMARY KEY ("id")) -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) query time: 34491 microseconds -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (remote client) Query -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (query) begin -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) query time: 185 microseconds -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (remote client) Query -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (query) INSERT INTO "people" ("first_name","last_name","email","id") VALUES ('John','Smith','','1') RETURNING "id" -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) DataRow -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) query time: 469 microseconds -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (remote client) Query -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (query) commit -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) query time: 2236 microseconds -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (remote client) Query -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (query) SELECT * FROM "people" -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) DataRow -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) query time: 208 microseconds -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (remote client) Query -89998 2024-03-18T09:49:25Z info [c4721e80486ff none] (query) DROP TABLE IF EXISTS "people" CASCADE -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (main) query time: 10545 microseconds -89998 2024-03-18T09:49:25Z info [ce8d8211292fe none] (startup) new client connection 127.0.0.1:59098 -89998 2024-03-18T09:49:25Z debug [ce8d8211292fe none] (tls) ssl request -89998 2024-03-18T09:49:25Z debug [ce8d8211292fe none] (tls) is disabled, ignoring -89998 2024-03-18T09:49:25Z info [ce00a205bd657 none] (startup) new client connection [::1]:36316 -89998 2024-03-18T09:49:25Z debug [ce00a205bd657 none] (tls) ssl request -89998 2024-03-18T09:49:25Z debug [ce00a205bd657 none] (tls) is disabled, ignoring -89998 2024-03-18T09:49:25Z info [c12a2a037a470 none] (startup) new client connection 127.0.0.1:59120 -89998 2024-03-18T09:49:25Z debug [c12a2a037a470 none] (tls) ssl request -89998 2024-03-18T09:49:25Z debug [c12a2a037a470 none] (tls) is disabled, ignoring -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (startup) new client connection 127.0.0.1:59126 -89998 2024-03-18T09:49:25Z debug [none none] (routing) matching rule: default_db default_user all with client visible routing type to external client -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (startup) route 'spqr-console.spqr-console' to 'default_db.default_user' -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (auth) ip '127.0.0.1' user '(unknown database).(unknown user)': host based authentication allowed -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) sending params: -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) TimeZone = UTC -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) standard_conforming_strings = on -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) session_authorization = spqr-console -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) server_version = 15.4 -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) server_encoding = UTF8 -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) is_superuser = off -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) IntervalStyle = postgres -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) integer_datetimes = on -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) default_transaction_read_only = off -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) DateStyle = ISO, MDY -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) client_encoding = UTF8 -89998 2024-03-18T09:49:25Z debug [c203c1367237e none] (setup) application_name = -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (setup) login time: 304 microseconds -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (setup) client connection from 127.0.0.1:59126 to route default_db.default_user accepted -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) client c203c1367 attached to sbde4b824 -89998 2024-03-18T09:49:25Z info [c203c1367237e sbde4b824a514] (main) new server connection localhost:5432 (connect time: 289 usec, resolve time: 230 usec) -89998 2024-03-18T09:49:25Z debug [none sbde4b824a514] (startup) startup server connection with user spqr-console & database spqr-console -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: Authentication -89998 2024-03-18T09:49:25Z debug [none sbde4b824a514] (auth) recieved msg type 0 -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: BackendKeyData -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (startup) received packet type: ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) deploy: SET TimeZone=E'UTC'; -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) -- ping -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) TimeZone = UTC -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) EmptyQueryResponse -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 285 microseconds -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) SELECT count(*) FROM information_schema.tables WHERE table_schema = CURRENT_SCHEMA() AND table_name = 'people' AND table_type = 'BASE TABLE' -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) DataRow -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 3038 microseconds -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) CREATE TABLE "people" ("id" bigserial,"first_name" text,"last_name" text,"email" text,PRIMARY KEY ("id")) -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 35266 microseconds -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) begin -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 171 microseconds -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) INSERT INTO "people" ("first_name","last_name","email","id") VALUES ('John','Smith','','1') RETURNING "id" -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) DataRow -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 468 microseconds -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) commit -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 5858 microseconds -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) SELECT * FROM "people" -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) DataRow -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 218 microseconds -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) SELECT * FROM "people" WHERE id = '1' ORDER BY "people"."id" LIMIT 1 -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) DataRow -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 363 microseconds -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) begin -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 171 microseconds -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) DELETE FROM "people" WHERE "people"."id" = '1' -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 230 microseconds -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) commit -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 2057 microseconds -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) SELECT * FROM "people" -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 264 microseconds -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (remote client) Query -89998 2024-03-18T09:49:25Z info [c203c1367237e none] (query) DROP TABLE IF EXISTS "people" CASCADE -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (main) query time: 2532 microseconds -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (startup) new client connection 127.0.0.1:59150 -89998 2024-03-18T09:49:25Z debug [none none] (routing) matching rule: default_db default_user all with client visible routing type to external client -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (startup) route 'spqr-console.spqr-console' to 'default_db.default_user' -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (auth) ip '127.0.0.1' user '(unknown database).(unknown user)': host based authentication allowed -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) sending params: -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) TimeZone = UTC -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) standard_conforming_strings = on -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) session_authorization = spqr-console -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) server_version = 15.4 -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) server_encoding = UTF8 -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) is_superuser = off -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) IntervalStyle = postgres -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) integer_datetimes = on -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) default_transaction_read_only = off -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) DateStyle = ISO, MDY -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) client_encoding = UTF8 -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d none] (setup) application_name = -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (setup) login time: 308 microseconds -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (setup) client connection from 127.0.0.1:59150 to route default_db.default_user accepted -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) client cf9d82045 attached to s6a564922 -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d s6a564922e5cf] (main) new server connection localhost:5432 (connect time: 228 usec, resolve time: 181 usec) -89998 2024-03-18T09:49:25Z debug [none s6a564922e5cf] (startup) startup server connection with user spqr-console & database spqr-console -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: Authentication -89998 2024-03-18T09:49:25Z debug [none s6a564922e5cf] (auth) recieved msg type 0 -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: BackendKeyData -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (startup) received packet type: ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) deploy: SET TimeZone=E'UTC'; -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) -- ping -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) TimeZone = UTC -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) EmptyQueryResponse -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 301 microseconds -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) SELECT count(*) FROM information_schema.tables WHERE table_schema = CURRENT_SCHEMA() AND table_name = 'people' AND table_type = 'BASE TABLE' -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 2759 microseconds -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) CREATE TABLE "people" ("id" bigserial,"first_name" text,"last_name" text,"email" text,PRIMARY KEY ("id")) -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 21870 microseconds -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) begin -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 165 microseconds -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) INSERT INTO "people" ("first_name","last_name","email","id") VALUES ('Name_1','','','1'),('Name_2','','','2'),('Name_3','','','3'),('Name_4','','','4'),('Name_5','','','5'),('Name_6','','','6'),('Name_7','','','7'),('Name_8','','','8'),('Name_9','','','9'),('Name_10','','','10'),('Name_11','','','11'),('Name_12','','','12'),('Name_13','','','13'),('Name_14','','','14'),('Name_15','','','15'),('Name_16','','','16'),('Name_17','','','17'),('Name_18','','','18'),('Name_19','','','19'),('Name_20','','','20'),('Name_21','','','21'),('Name_22','','','22'),('Name_23','','','23'),('Name_24','','','24'),('Name_25','','','25'),('Name_26','','','26'),('Name_27','','','27'),('Name_28','','','28'),('Name_29','','','29'),('Name_30','','','30'),('Name_31','','','31'),('Name_32','','','32'),('Name_33','','','33'),('Name_34','','','34'),('Name_35','','','35'),('Name_36','','','36'),('Name_37','','','37'),('Name_38','','','38'),('Name_39','','','39'),('Name_40','',' -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 1084 microseconds -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) commit -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 5347 microseconds -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) begin -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 137 microseconds -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) INSERT INTO "people" ("first_name","last_name","email","id") VALUES ('Name_100','','','100'),('Name_101','','','101'),('Name_102','','','102'),('Name_103','','','103'),('Name_104','','','104'),('Name_105','','','105'),('Name_106','','','106'),('Name_107','','','107'),('Name_108','','','108'),('Name_109','','','109'),('Name_110','','','110'),('Name_111','','','111'),('Name_112','','','112'),('Name_113','','','113'),('Name_114','','','114'),('Name_115','','','115'),('Name_116','','','116'),('Name_117','','','117'),('Name_118','','','118'),('Name_119','','','119'),('Name_120','','','120'),('Name_121','','','121'),('Name_122','','','122'),('Name_123','','','123'),('Name_124','','','124'),('Name_125','','','125'),('Name_126','','','126'),('Name_127','','','127'),('Name_128','','','128'),('Name_129','','','129'),('Name_130','','','130'),('Name_131','','','131'),('Name_132','','','132'),('Name_133','','','133'),('Name_134','','','134'),('Name_135','','',' -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 1063 microseconds -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) commit -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 7133 microseconds -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) SELECT * FROM "people" WHERE id >= '1' AND id <= '99' -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 528 microseconds -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) SELECT * FROM "people" WHERE id >= '100' AND id <= '199' -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) RowDescription -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) DataRow -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 297 microseconds -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) DROP TABLE IF EXISTS "people" CASCADE -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 16235 microseconds -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (remote client) Query -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d none] (query) DROP TABLE IF EXISTS "people" CASCADE -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) NoticeResponse -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (main) query time: 337 microseconds -89998 2024-03-18T09:49:25Z info [cf9d82045bb0d s6a564922e5cf] (main) client disconnected (read/write error, addr 127.0.0.1:59150): Resource temporarily unavailable, status OD_ECLIENT_READ -89998 2024-03-18T09:49:25Z info [c203c1367237e sbde4b824a514] (main) client disconnected (read/write error, addr 127.0.0.1:59126): Resource temporarily unavailable, status OD_ECLIENT_READ -89998 2024-03-18T09:49:25Z info [c4721e80486ff s0356c96e5f7d] (main) client disconnected (read/write error, addr 127.0.0.1:59074): Resource temporarily unavailable, status OD_ECLIENT_READ -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (sync-point) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (reset) synchronized -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (sync-point) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (reset) synchronized -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (sync-point) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (reset) synchronized -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (reset-discard) CommandComplete -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (reset-discard) ParameterStatus -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (reset-discard) TimeZone = Etc/UTC -89998 2024-03-18T09:49:25Z debug [c203c1367237e sbde4b824a514] (reset-discard) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (reset-discard) CommandComplete -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (reset-discard) ParameterStatus -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (reset-discard) TimeZone = Etc/UTC -89998 2024-03-18T09:49:25Z debug [cf9d82045bb0d s6a564922e5cf] (reset-discard) ReadyForQuery -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (reset-discard) CommandComplete -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (reset-discard) ParameterStatus -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (reset-discard) TimeZone = Etc/UTC -89998 2024-03-18T09:49:25Z debug [c4721e80486ff s0356c96e5f7d] (reset-discard) ReadyForQuery -89998 2024-03-18T09:49:40Z info [none none] (stats) system worker: msg (17 allocated, 0 cached, 1 freed, 0 cache_size), coroutines (3 active, 0 cached) startup errors 0 -89998 2024-03-18T09:49:40Z info [none none] (stats) clients 0 -89998 2024-03-18T09:49:40Z info [none none] (stats) [default_db.default_user] 0 clients, 0 active servers, 3 idle servers, 0 transactions/sec (7048 usec) 0 queries/sec (4845 usec) 111 in bytes/sec, 188 out bytes/sec -89998 2024-03-18T09:49:40Z info [none none] (stats) worker[0]: msg (120 allocated, 0 cached, 133 freed, 0 cache_size), coroutines (1 active, 0 cached), clients_processed: 8 -89998 2024-03-18T09:50:17Z info [none none] (system) SIGINT received, shutting down