diff --git a/config-examples/odyssey-dev.conf b/config-examples/odyssey-dev.conf index a0080d2ed..5c4ce07f1 100644 --- a/config-examples/odyssey-dev.conf +++ b/config-examples/odyssey-dev.conf @@ -1,98 +1,54 @@ -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_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 no -log_stats yes -stats_interval 60 -log_general_stats_prom yes -log_route_stats_prom no -promhttp_server_port 7777 - -workers "auto" -resolvers 1 - -readahead 8192 - -cache_coroutine 0 - -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 + + host "localhost" + port 5432 } database default { user default { - authentication "md5" - - password "md588cb17a149f659b9a78ec4a33cbb3c7f" + authentication "none" storage "postgres_server" - pool "transaction" - pool_size 0 +# storage_db "db" +# storage_user "user" +# storage_password "password" -# auth_query "SELECT usename, passwd FROM pg_shadow WHERE usename=$1" -# auth_query_db "postgres" -# auth_query_user "reshke" -# storage_password "reshke" + pool "session" - pool_timeout 0 + client_fwd_error yes + } +} - pool_ttl 1201 +unix_socket_dir "/tmp" +unix_socket_mode "0644" - pool_discard no +log_format "%p %t %l [%i %s] (%c) %m\n" +log_debug yes +log_config yes +log_session yes +log_query yes +log_stats yes +daemonize yes - pool_cancel yes +log_file "/home/nikunis/odyssey/logs.txt" - pool_rollback yes -# seconds - pool_client_idle_timeout 20 -# seconds - pool_idle_in_transaction_timeout 20 +locks_dir "/tmp/odyssey" +graceful_die_on_errors yes +enable_online_restart no +bindwith_reuseport yes - client_fwd_error yes - application_name_add_host yes - server_lifetime 1901 - log_debug no +stats_interval 60 - quantiles "0.99,0.95,0.5" - client_max 107 - } +pid_file "/tmp/odyssey.pid" + +listen { + host "*" + port 6432 } + storage "local" { type "local" } @@ -105,10 +61,3 @@ 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 a14a6ff86..e4e3b3573 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -82,6 +82,8 @@ 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/gorm/gorm-spqr/Dockerfile b/docker/gorm/gorm-spqr/Dockerfile deleted file mode 100644 index 75e76cd2b..000000000 --- a/docker/gorm/gorm-spqr/Dockerfile +++ /dev/null @@ -1,8 +0,0 @@ -FROM golang:1.21 - -WORKDIR /root -COPY . /root - -RUN go get ./... - -ENTRYPOINT go test github.com/pg-sharding/gorm-spqr/tests diff --git a/docker/gorm/gorm-spqr/README.md b/docker/gorm/gorm-spqr/README.md deleted file mode 100644 index 256757258..000000000 --- a/docker/gorm/gorm-spqr/README.md +++ /dev/null @@ -1,2 +0,0 @@ -# gorm-spqr -Tool for testing compatibility of SPQR and gorm diff --git a/docker/gorm/gorm-spqr/controllers/person.go b/docker/gorm/gorm-spqr/controllers/person.go deleted file mode 100644 index 85989cd3f..000000000 --- a/docker/gorm/gorm-spqr/controllers/person.go +++ /dev/null @@ -1,55 +0,0 @@ -package controllers - -import "github.com/pg-sharding/gorm-spqr/models" - -func GetAllPersons() []models.Person { - var res []models.Person - models.DB.Find(&res) - - return res -} - -func GetPerson(id uint32) (*models.Person, error) { - var person models.Person - if err := models.DB.Where("id = ?", id).First(&person).Error; err != nil { - return nil, err - } - return &person, nil -} - -func WritePerson(person *models.Person) error { - tx := models.DB.Create(person) - return tx.Error -} - -func UpdatePerson(person *models.Person) error { - var current models.Person - if err := models.DB.Where("id = ?", person.ID).First(¤t).Error; err != nil { - return err - } - models.DB.Save(&person) - return nil -} - -func DeletePerson(id uint32) error { - var person models.Person - if err := models.DB.Where("id = ?", id).First(&person).Error; err != nil { - return err - } - - models.DB.Delete(&person) - return nil -} - -func WritePeople(people []*models.Person) error { - tx := models.DB.Create(people) - return tx.Error -} - -func GetPeople(from uint32, to uint32) ([]*models.Person, error) { - people := make([]*models.Person, 0) - if err := models.DB.Where("id >= ? AND id <= ?", from, to).Find(&people).Error; err != nil { - return nil, err - } - return people, nil -} diff --git a/docker/gorm/gorm-spqr/go.mod b/docker/gorm/gorm-spqr/go.mod deleted file mode 100644 index 15f8ee592..000000000 --- a/docker/gorm/gorm-spqr/go.mod +++ /dev/null @@ -1,20 +0,0 @@ -module github.com/pg-sharding/gorm-spqr - -go 1.21 - -require ( - github.com/jackc/pgx/v5 v5.4.3 - gorm.io/driver/postgres v1.5.4 - gorm.io/gorm v1.25.5 - gotest.tools/v3 v3.5.1 -) - -require ( - github.com/google/go-cmp v0.5.9 // indirect - github.com/jackc/pgpassfile v1.0.0 // indirect - github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect - github.com/jinzhu/inflection v1.0.0 // indirect - github.com/jinzhu/now v1.1.5 // indirect - golang.org/x/crypto v0.14.0 // indirect - golang.org/x/text v0.13.0 // indirect -) diff --git a/docker/gorm/gorm-spqr/go.sum b/docker/gorm/gorm-spqr/go.sum deleted file mode 100644 index fdbd13655..000000000 --- a/docker/gorm/gorm-spqr/go.sum +++ /dev/null @@ -1,36 +0,0 @@ -github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= -github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38= -github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= -github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM= -github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= -github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a h1:bbPeKD0xmW/Y25WS6cokEszi5g+S0QxI/d45PkRi7Nk= -github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM= -github.com/jackc/pgx/v5 v5.4.3 h1:cxFyXhxlvAifxnkKKdlxv8XqUf59tDlYjnV5YYfsJJY= -github.com/jackc/pgx/v5 v5.4.3/go.mod h1:Ig06C2Vu0t5qXC60W8sqIthScaEnFvojjj9dSljmHRA= -github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E= -github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc= -github.com/jinzhu/now v1.1.5 h1:/o9tlHleP7gOFmsnYNz3RGnqzefHA47wQpKrrdTIwXQ= -github.com/jinzhu/now v1.1.5/go.mod h1:d3SSVoowX0Lcu0IBviAWJpolVfI5UJVZZ7cO71lE/z8= -github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= -github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk= -github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -golang.org/x/crypto v0.14.0 h1:wBqGXzWJW6m1XrIKlAH0Hs1JJ7+9KBwnIO8v66Q9cHc= -golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= -golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= -golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= -gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gorm.io/driver/postgres v1.5.4 h1:Iyrp9Meh3GmbSuyIAGyjkN+n9K+GHX9b9MqsTL4EJCo= -gorm.io/driver/postgres v1.5.4/go.mod h1:Bgo89+h0CRcdA33Y6frlaHHVuTdOf87pmyzwW9C/BH0= -gorm.io/gorm v1.25.5 h1:zR9lOiiYf09VNh5Q1gphfyia1JpiClIWG9hQaxB/mls= -gorm.io/gorm v1.25.5/go.mod h1:hbnx/Oo0ChWMn1BIhpy1oYozzpM15i4YPuHDmfYtwg8= -gotest.tools/v3 v3.5.1 h1:EENdUnS3pdur5nybKYIh2Vfgc8IUNBjxDPSjtiJcOzU= -gotest.tools/v3 v3.5.1/go.mod h1:isy3WKz7GK6uNw/sbHzfKBLvlvXwUyV06n6brMxxopU= diff --git a/docker/gorm/gorm-spqr/models/person.go b/docker/gorm/gorm-spqr/models/person.go deleted file mode 100644 index 232a6f437..000000000 --- a/docker/gorm/gorm-spqr/models/person.go +++ /dev/null @@ -1,8 +0,0 @@ -package models - -type Person struct { - ID uint32 `json:"id" gorm:"primary_key"` - FirstName string `json:"first_name"` - LastName string `json:"last_name"` - Email string `json:"email"` -} diff --git a/docker/gorm/gorm-spqr/models/setup.go b/docker/gorm/gorm-spqr/models/setup.go deleted file mode 100644 index 6587dce65..000000000 --- a/docker/gorm/gorm-spqr/models/setup.go +++ /dev/null @@ -1,77 +0,0 @@ -package models - -import ( - "context" - "fmt" - "github.com/jackc/pgx/v5" - "gorm.io/driver/postgres" - "gorm.io/gorm" - "os" -) - -var DB *gorm.DB - -func SetupSharding() { - dsn := fmt.Sprintf( - "host=%s user=%s dbname=%s port=%s %s", - os.Getenv("DB_HOST"), - "spqr-console", - "spqr-console", - os.Getenv("DB_PORT"), - os.Getenv("EXTRA_PARAMS"), - ) - conn, err := pgx.Connect(context.Background(), dsn) - if err != nil { - panic(fmt.Errorf("failed to connect to database: %s", err)) - } - defer func() { - _ = conn.Close(context.Background()) - }() - - _, err = conn.Exec(context.Background(), "CREATE DISTRIBUTION ds1 COLUMN TYPES integer;") - if err != nil { - _, _ = fmt.Fprintf(os.Stderr, "could not setup sharding: %s\n", err) - } - _, err = conn.Exec(context.Background(), "CREATE SHARDING RULE r1 COLUMNS id FOR DISTRIBUTION ds1;") - if err != nil { - _, _ = fmt.Fprintf(os.Stderr, "could not setup sharding: %s\n", err) - } - _, err = conn.Exec(context.Background(), "CREATE KEY RANGE krid1 FROM 1 TO 100 ROUTE TO sh1 FOR DISTRIBUTION ds1;") - if err != nil { - _, _ = fmt.Fprintf(os.Stderr, "could not setup sharding: %s\n", err) - } - _, err = conn.Exec(context.Background(), "CREATE KEY RANGE krid2 FROM 100 TO 200 ROUTE TO sh2 FOR DISTRIBUTION ds1;") - if err != nil { - _, _ = fmt.Fprintf(os.Stderr, "could not setup sharding: %s\n", err) - } - _, err = conn.Exec(context.Background(), "ALTER DISTRIBUTION ds1 ATTACH RELATION people DISTRIBUTION KEY id;") - if err != nil { - _, _ = fmt.Fprintf(os.Stderr, "could not setup sharding: %s\n", err) - } -} - -func ConnectDatabase() { - dsn := fmt.Sprintf( - "host=%s user=%s password=%s dbname=%s port=%s TimeZone=UTC %s", - os.Getenv("DB_HOST"), - os.Getenv("DB_USER"), - os.Getenv("DB_PASSWORD"), - os.Getenv("DB_NAME"), - os.Getenv("DB_PORT"), - os.Getenv("EXTRA_PARAMS"), - ) - database, err := gorm.Open(postgres.New(postgres.Config{ - DSN: dsn, - PreferSimpleProtocol: true, - }), &gorm.Config{}) - - if err != nil { - panic("Failed to connect to database") - } - - if err = database.AutoMigrate(&Person{}); err != nil { - _, _ = fmt.Fprintf(os.Stderr, "could not migrate: %s", err) - } - - DB = database -} diff --git a/docker/gorm/gorm-spqr/tests/person_test.go b/docker/gorm/gorm-spqr/tests/person_test.go deleted file mode 100644 index ccc7e297f..000000000 --- a/docker/gorm/gorm-spqr/tests/person_test.go +++ /dev/null @@ -1,157 +0,0 @@ -package tests - -import ( - "fmt" - "os" - "testing" - - "github.com/pg-sharding/gorm-spqr/controllers" - "github.com/pg-sharding/gorm-spqr/models" - "github.com/pg-sharding/gorm-spqr/utils" - "gotest.tools/v3/assert" - is "gotest.tools/v3/assert/cmp" -) - -func setup() { - models.ConnectDatabase() -} - -func tearDown(t *testing.T) { - if err := utils.DeleteAll(); err != nil { - t.Errorf("Error running tearDown: %s", err) - } -} - -func TestMain(m *testing.M) { - models.SetupSharding() - code := m.Run() - _ = utils.DeleteAll() - os.Exit(code) -} - -func TestCreatePerson(t *testing.T) { - setup() - - var person = models.Person{ - ID: 1, - FirstName: "John", - LastName: "Smith", - } - - err := controllers.WritePerson(&person) - assert.Check(t, err, "could not write: %s", err) - - var allPersons = controllers.GetAllPersons() - assert.Check(t, is.Len(allPersons, 1), "Expected to have 1 person in db, got %d", len(allPersons)) - - tearDown(t) -} - -func TestReadPerson(t *testing.T) { - setup() - - var person = models.Person{ - ID: 1, - FirstName: "John", - LastName: "Smith", - } - - err := controllers.WritePerson(&person) - assert.Check(t, err, "could not write: %s", err) - - var personDb *models.Person - personDb, err = controllers.GetPerson(person.ID) - assert.Check(t, err, "error getting person: %s", err) - assert.DeepEqual(t, person, *personDb) - - tearDown(t) -} - -func TestUpdatePerson(t *testing.T) { - setup() - - var person = models.Person{ - ID: 1, - FirstName: "John", - LastName: "Smith", - } - - err := controllers.WritePerson(&person) - assert.Check(t, err, "could not write: %s", err) - - person.Email = "foo@bar" - - err = controllers.UpdatePerson(&person) - assert.Check(t, err, "error updating: %s", err) - - var personDb *models.Person - personDb, err = controllers.GetPerson(person.ID) - assert.Check(t, err, "error getting person: %s", err) - assert.DeepEqual(t, person, *personDb) - - tearDown(t) -} - -func TestDeletePerson(t *testing.T) { - setup() - - var person = models.Person{ - ID: 1, - FirstName: "John", - LastName: "Smith", - } - - err := controllers.WritePerson(&person) - assert.Check(t, err, "could not write: %s", err) - - var allPersons = controllers.GetAllPersons() - assert.Check(t, is.Len(allPersons, 1), "Expected to have 1 person in db, got %d", len(allPersons)) - - err = controllers.DeletePerson(person.ID) - assert.Check(t, err, "error deleting person: %s", err) - - allPersons = controllers.GetAllPersons() - assert.Check(t, is.Len(allPersons, 0), "Expected to have no people in db, got %d", len(allPersons)) - - tearDown(t) -} - -func TestMultipleWrite(t *testing.T) { - setup() - - var firstShard = make([]*models.Person, 0) - for i := 1; i < 100; i++ { - person := &models.Person{ - ID: uint32(i), - FirstName: fmt.Sprintf("Name_%d", i), - } - firstShard = append(firstShard, person) - } - - err := controllers.WritePeople(firstShard) - assert.Check(t, err, "could not write: %s", err) - - var secondShard = make([]*models.Person, 0) - for i := 100; i < 200; i++ { - person := &models.Person{ - ID: uint32(i), - FirstName: fmt.Sprintf("Name_%d", i), - } - secondShard = append(secondShard, person) - } - - err = controllers.WritePeople(secondShard) - assert.Check(t, err, "could not write: %s", err) - - firstShardPeople, err := controllers.GetPeople(uint32(1), uint32(99)) - assert.Check(t, err, "could not get people: %s", err) - - assert.Check(t, is.Equal(len(firstShardPeople), 99), "expected to have %d records on 1st shard, got %d", 99, len(firstShardPeople)) - - secondShardPeople, err := controllers.GetPeople(uint32(100), uint32(199)) - assert.Check(t, err, "could not get people: %s", err) - - assert.Check(t, is.Equal(len(secondShardPeople), 100), "expected to have %d records on 1st shard, got %d", 100, len(secondShardPeople)) - - tearDown(t) -} diff --git a/docker/gorm/gorm-spqr/utils/utils.go b/docker/gorm/gorm-spqr/utils/utils.go deleted file mode 100644 index f2a782f78..000000000 --- a/docker/gorm/gorm-spqr/utils/utils.go +++ /dev/null @@ -1,7 +0,0 @@ -package utils - -import "github.com/pg-sharding/gorm-spqr/models" - -func DeleteAll() error { - return models.DB.Migrator().DropTable(&models.Person{}) -} diff --git a/docker/gorm/test.sh b/docker/gorm/test.sh index d4f131400..2537647eb 100755 --- a/docker/gorm/test.sh +++ b/docker/gorm/test.sh @@ -1,2 +1,4 @@ +git clone https://github.com/pg-sharding/gorm-spqr.git /gorm/gorm-spqr docker build -t gorm-tests /gorm/gorm-spqr -docker run -e DB_HOST='odyssey' -e DB_PORT=6432 -e DB_USER='spqr-console' -e DB_NAME='spqr-console' --network=odyssey_od_net gorm-tests \ No newline at end of file +rm -rf /gorm/gorm-spqr +docker run -e DB_HOST='odyssey' -e DB_PORT=6432 -e DB_USER='spqr-console' -e DB_NAME='spqr-console' -e EXTRA_PARAMS='client_encoding=UTF8' --network=odyssey_od_net gorm-tests \ No newline at end of file diff --git a/docker/odyssey.conf b/docker/odyssey.conf index e5e4b31f8..e8f5a2268 100644 --- a/docker/odyssey.conf +++ b/docker/odyssey.conf @@ -36,7 +36,7 @@ log_file "./logs.txt" locks_dir "/tmp/odyssey" graceful_die_on_errors yes -enable_online_restart yes +enable_online_restart no bindwith_reuseport yes stats_interval 60 diff --git a/logs.txt b/logs.txt new file mode 100644 index 000000000..df44f1bd3 --- /dev/null +++ b/logs.txt @@ -0,0 +1,1243 @@ +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