415 lines
45 KiB
Plaintext
415 lines
45 KiB
Plaintext
2026-05-12 14:05:57.738 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS coordinates (id uuid PRIMARY KEY, x BIGINT NULL, y INT NULL)
|
|
2026-05-12 14:05:58.287 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS car (id uuid PRIMARY KEY, cool BOOLEAN NULL)
|
|
2026-05-12 14:16:46.098 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS humanbeing (id uuid PRIMARY KEY, "name" TEXT NOT NULL, coordinates uuid NOT NULL, last_name TEXT NOT NULL, creation_date DATE NOT NULL, real_hero BOOLEAN NOT NULL, has_toothpick BOOLEAN NOT NULL, impact_speed DOUBLE PRECISION NOT NULL, soundtrack_name TEXT NOT NULL, minutes_of_waiting REAL NOT NULL, car uuid NOT NULL, weapon_type weapontype DEFAULT NULL NULL, CONSTRAINT fk_humanbeing_coordinates__id FOREIGN KEY (coordinates) REFERENCES coordinates(id) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT fk_humanbeing_car__id FOREIGN KEY (car) REFERENCES car(id) ON DELETE RESTRICT ON UPDATE RESTRICT)
|
|
2026-05-12 14:16:47.666 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing."name", humanbeing.coordinates, humanbeing.last_name, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-12 14:21:34.382 [main] DEBUG Exposed - CREATE TYPE weapontype AS ENUM ('hammer', 'shotgun', 'bat');
|
|
2026-05-12 14:21:34.985 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS coordinates (id uuid PRIMARY KEY, x BIGINT NULL, y INT NULL)
|
|
2026-05-12 14:21:35.347 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS car (id uuid PRIMARY KEY, cool BOOLEAN NULL)
|
|
2026-05-12 14:21:36.019 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS humanbeing (id uuid PRIMARY KEY, "name" TEXT NOT NULL, coordinates uuid NOT NULL, last_name TEXT NOT NULL, creation_date DATE NOT NULL, real_hero BOOLEAN NOT NULL, has_toothpick BOOLEAN NOT NULL, impact_speed DOUBLE PRECISION NOT NULL, soundtrack_name TEXT NOT NULL, minutes_of_waiting REAL NOT NULL, car uuid NOT NULL, weapon_type weapontype DEFAULT NULL NULL, CONSTRAINT fk_humanbeing_coordinates__id FOREIGN KEY (coordinates) REFERENCES coordinates(id) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT fk_humanbeing_car__id FOREIGN KEY (car) REFERENCES car(id) ON DELETE RESTRICT ON UPDATE RESTRICT)
|
|
2026-05-12 14:21:37.369 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing."name", humanbeing.coordinates, humanbeing.last_name, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-12 14:24:23.769 [main] DEBUG Exposed -
|
|
DO $$ BEGIN
|
|
CREATE TYPE weapontype AS ENUM ('hammer', 'shotgun', 'bat');
|
|
EXCEPTION
|
|
WHEN duplicate_object THEN null;
|
|
END $$;
|
|
|
|
2026-05-12 14:24:24.681 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS coordinates (id uuid PRIMARY KEY, x BIGINT NULL, y INT NULL)
|
|
2026-05-12 14:24:24.982 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS car (id uuid PRIMARY KEY, cool BOOLEAN NULL)
|
|
2026-05-12 14:24:25.494 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS humanbeing (id uuid PRIMARY KEY, "name" TEXT NOT NULL, coordinates uuid NOT NULL, last_name TEXT NOT NULL, creation_date DATE NOT NULL, real_hero BOOLEAN NOT NULL, has_toothpick BOOLEAN NOT NULL, impact_speed DOUBLE PRECISION NOT NULL, soundtrack_name TEXT NOT NULL, minutes_of_waiting REAL NOT NULL, car uuid NOT NULL, weapon_type weapontype DEFAULT NULL NULL, CONSTRAINT fk_humanbeing_coordinates__id FOREIGN KEY (coordinates) REFERENCES coordinates(id) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT fk_humanbeing_car__id FOREIGN KEY (car) REFERENCES car(id) ON DELETE RESTRICT ON UPDATE RESTRICT)
|
|
2026-05-12 14:24:27.035 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing."name", humanbeing.coordinates, humanbeing.last_name, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-12 14:24:33.803 [main] DEBUG Exposed -
|
|
DO $$ BEGIN
|
|
CREATE TYPE weapontype AS ENUM ('hammer', 'shotgun', 'bat');
|
|
EXCEPTION
|
|
WHEN duplicate_object THEN null;
|
|
END $$;
|
|
|
|
2026-05-12 14:24:36.459 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing."name", humanbeing.coordinates, humanbeing.last_name, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-12 14:34:18.008 [main] DEBUG Exposed -
|
|
DO $$ BEGIN
|
|
CREATE TYPE weapontype AS ENUM ('hammer', 'shotgun', 'bat');
|
|
EXCEPTION
|
|
WHEN duplicate_object THEN null;
|
|
END $$;
|
|
|
|
2026-05-12 14:34:20.947 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing."name", humanbeing.coordinates, humanbeing.last_name, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-12 14:42:52.429 [main] DEBUG com.zaxxer.hikari.HikariConfig - Driver class org.postgresql.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6
|
|
2026-05-12 14:42:52.435 [main] DEBUG com.zaxxer.hikari.HikariConfig - HikariPool-1 - configuration:
|
|
2026-05-12 14:42:52.437 [main] DEBUG com.zaxxer.hikari.HikariConfig - allowPoolSuspension................................false
|
|
2026-05-12 14:42:52.437 [main] DEBUG com.zaxxer.hikari.HikariConfig - autoCommit................................false
|
|
2026-05-12 14:42:52.437 [main] DEBUG com.zaxxer.hikari.HikariConfig - catalog................................none
|
|
2026-05-12 14:42:52.437 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionInitSql................................none
|
|
2026-05-12 14:42:52.437 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTestQuery................................none
|
|
2026-05-12 14:42:52.437 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTimeout................................30000
|
|
2026-05-12 14:42:52.437 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSource................................none
|
|
2026-05-12 14:42:52.437 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceClassName................................none
|
|
2026-05-12 14:42:52.437 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceJNDI................................none
|
|
2026-05-12 14:42:52.438 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceProperties................................{password=<masked>}
|
|
2026-05-12 14:42:52.438 [main] DEBUG com.zaxxer.hikari.HikariConfig - driverClassName................................"org.postgresql.Driver"
|
|
2026-05-12 14:42:52.438 [main] DEBUG com.zaxxer.hikari.HikariConfig - exceptionOverrideClassName................................none
|
|
2026-05-12 14:42:52.438 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckProperties................................{}
|
|
2026-05-12 14:42:52.438 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckRegistry................................none
|
|
2026-05-12 14:42:52.438 [main] DEBUG com.zaxxer.hikari.HikariConfig - idleTimeout................................600000
|
|
2026-05-12 14:42:52.438 [main] DEBUG com.zaxxer.hikari.HikariConfig - initializationFailTimeout................................1
|
|
2026-05-12 14:42:52.438 [main] DEBUG com.zaxxer.hikari.HikariConfig - isolateInternalQueries................................false
|
|
2026-05-12 14:42:52.438 [main] DEBUG com.zaxxer.hikari.HikariConfig - jdbcUrl................................jdbc:postgresql://aklivtsov.tech:5430/prog7_db
|
|
2026-05-12 14:42:52.438 [main] DEBUG com.zaxxer.hikari.HikariConfig - keepaliveTime................................0
|
|
2026-05-12 14:42:52.439 [main] DEBUG com.zaxxer.hikari.HikariConfig - leakDetectionThreshold................................0
|
|
2026-05-12 14:42:52.439 [main] DEBUG com.zaxxer.hikari.HikariConfig - maxLifetime................................1800000
|
|
2026-05-12 14:42:52.439 [main] DEBUG com.zaxxer.hikari.HikariConfig - maximumPoolSize................................10
|
|
2026-05-12 14:42:52.439 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricRegistry................................none
|
|
2026-05-12 14:42:52.439 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricsTrackerFactory................................none
|
|
2026-05-12 14:42:52.439 [main] DEBUG com.zaxxer.hikari.HikariConfig - minimumIdle................................10
|
|
2026-05-12 14:42:52.439 [main] DEBUG com.zaxxer.hikari.HikariConfig - password................................<masked>
|
|
2026-05-12 14:42:52.439 [main] DEBUG com.zaxxer.hikari.HikariConfig - poolName................................"HikariPool-1"
|
|
2026-05-12 14:42:52.439 [main] DEBUG com.zaxxer.hikari.HikariConfig - readOnly................................false
|
|
2026-05-12 14:42:52.439 [main] DEBUG com.zaxxer.hikari.HikariConfig - registerMbeans................................false
|
|
2026-05-12 14:42:52.440 [main] DEBUG com.zaxxer.hikari.HikariConfig - scheduledExecutor................................none
|
|
2026-05-12 14:42:52.440 [main] DEBUG com.zaxxer.hikari.HikariConfig - schema................................none
|
|
2026-05-12 14:42:52.440 [main] DEBUG com.zaxxer.hikari.HikariConfig - threadFactory................................internal
|
|
2026-05-12 14:42:52.440 [main] DEBUG com.zaxxer.hikari.HikariConfig - transactionIsolation................................"TRANSACTION_REPEATABLE_READ"
|
|
2026-05-12 14:42:52.440 [main] DEBUG com.zaxxer.hikari.HikariConfig - username................................"mainUser"
|
|
2026-05-12 14:42:52.440 [main] DEBUG com.zaxxer.hikari.HikariConfig - validationTimeout................................5000
|
|
2026-05-12 14:42:52.441 [main] DEBUG com.zaxxer.hikari.HikariConfig - HikariPool-1 - configuration:
|
|
2026-05-12 14:42:52.441 [main] DEBUG com.zaxxer.hikari.HikariConfig - allowPoolSuspension................................false
|
|
2026-05-12 14:42:52.441 [main] DEBUG com.zaxxer.hikari.HikariConfig - autoCommit................................false
|
|
2026-05-12 14:42:52.441 [main] DEBUG com.zaxxer.hikari.HikariConfig - catalog................................none
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionInitSql................................none
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTestQuery................................none
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTimeout................................30000
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSource................................none
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceClassName................................none
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceJNDI................................none
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceProperties................................{password=<masked>}
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - driverClassName................................"org.postgresql.Driver"
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - exceptionOverrideClassName................................none
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckProperties................................{}
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckRegistry................................none
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - idleTimeout................................600000
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - initializationFailTimeout................................1
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - isolateInternalQueries................................false
|
|
2026-05-12 14:42:52.442 [main] DEBUG com.zaxxer.hikari.HikariConfig - jdbcUrl................................jdbc:postgresql://aklivtsov.tech:5430/prog7_db
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - keepaliveTime................................0
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - leakDetectionThreshold................................0
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - maxLifetime................................1800000
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - maximumPoolSize................................10
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricRegistry................................none
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricsTrackerFactory................................none
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - minimumIdle................................10
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - password................................<masked>
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - poolName................................"HikariPool-1"
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - readOnly................................false
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - registerMbeans................................false
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - scheduledExecutor................................none
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - schema................................none
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - threadFactory................................internal
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - transactionIsolation................................"TRANSACTION_REPEATABLE_READ"
|
|
2026-05-12 14:42:52.443 [main] DEBUG com.zaxxer.hikari.HikariConfig - username................................"mainUser"
|
|
2026-05-12 14:42:52.444 [main] DEBUG com.zaxxer.hikari.HikariConfig - validationTimeout................................5000
|
|
2026-05-12 14:42:52.445 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...
|
|
2026-05-12 14:42:53.357 [main] DEBUG com.zaxxer.hikari.pool.PoolBase - HikariPool-1 - Failed to create/setup connection: FATAL: password authentication failed for user "mainUser"
|
|
2026-05-12 14:42:53.357 [main] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Cannot acquire connection from data source
|
|
org.postgresql.util.PSQLException: FATAL: password authentication failed for user "mainUser"
|
|
at org.postgresql.core.v3.ConnectionFactoryImpl.doAuthentication(ConnectionFactoryImpl.java:778)
|
|
at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:234)
|
|
at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:289)
|
|
at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:57)
|
|
at org.postgresql.jdbc.PgConnection.<init>(PgConnection.java:279)
|
|
at org.postgresql.Driver.makeConnection(Driver.java:448)
|
|
at org.postgresql.Driver.connect(Driver.java:298)
|
|
at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
|
|
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
|
|
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
|
|
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
|
|
at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561)
|
|
at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
|
|
at com.zaxxer.hikari.HikariDataSource.<init>(HikariDataSource.java:81)
|
|
at database.DatabaseManager.start(DatabaseManager.kt:23)
|
|
at database.DatabaseManagerKt.main(DatabaseManager.kt:57)
|
|
2026-05-12 14:42:54.364 [main] ERROR com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Exception during pool initialization.
|
|
org.postgresql.util.PSQLException: FATAL: password authentication failed for user "mainUser"
|
|
at org.postgresql.core.v3.ConnectionFactoryImpl.doAuthentication(ConnectionFactoryImpl.java:778)
|
|
at org.postgresql.core.v3.ConnectionFactoryImpl.tryConnect(ConnectionFactoryImpl.java:234)
|
|
at org.postgresql.core.v3.ConnectionFactoryImpl.openConnectionImpl(ConnectionFactoryImpl.java:289)
|
|
at org.postgresql.core.ConnectionFactory.openConnection(ConnectionFactory.java:57)
|
|
at org.postgresql.jdbc.PgConnection.<init>(PgConnection.java:279)
|
|
at org.postgresql.Driver.makeConnection(Driver.java:448)
|
|
at org.postgresql.Driver.connect(Driver.java:298)
|
|
at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138)
|
|
at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:364)
|
|
at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206)
|
|
at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476)
|
|
at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561)
|
|
at com.zaxxer.hikari.pool.HikariPool.<init>(HikariPool.java:115)
|
|
at com.zaxxer.hikari.HikariDataSource.<init>(HikariDataSource.java:81)
|
|
at database.DatabaseManager.start(DatabaseManager.kt:23)
|
|
at database.DatabaseManagerKt.main(DatabaseManager.kt:57)
|
|
2026-05-12 14:43:09.160 [main] DEBUG com.zaxxer.hikari.HikariConfig - Driver class org.postgresql.Driver found in Thread context class loader jdk.internal.loader.ClassLoaders$AppClassLoader@1dbd16a6
|
|
2026-05-12 14:43:09.165 [main] DEBUG com.zaxxer.hikari.HikariConfig - HikariPool-1 - configuration:
|
|
2026-05-12 14:43:09.166 [main] DEBUG com.zaxxer.hikari.HikariConfig - allowPoolSuspension................................false
|
|
2026-05-12 14:43:09.167 [main] DEBUG com.zaxxer.hikari.HikariConfig - autoCommit................................false
|
|
2026-05-12 14:43:09.167 [main] DEBUG com.zaxxer.hikari.HikariConfig - catalog................................none
|
|
2026-05-12 14:43:09.167 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionInitSql................................none
|
|
2026-05-12 14:43:09.167 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTestQuery................................none
|
|
2026-05-12 14:43:09.167 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTimeout................................30000
|
|
2026-05-12 14:43:09.167 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSource................................none
|
|
2026-05-12 14:43:09.167 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceClassName................................none
|
|
2026-05-12 14:43:09.167 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceJNDI................................none
|
|
2026-05-12 14:43:09.167 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceProperties................................{password=<masked>}
|
|
2026-05-12 14:43:09.167 [main] DEBUG com.zaxxer.hikari.HikariConfig - driverClassName................................"org.postgresql.Driver"
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - exceptionOverrideClassName................................none
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckProperties................................{}
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckRegistry................................none
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - idleTimeout................................600000
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - initializationFailTimeout................................1
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - isolateInternalQueries................................false
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - jdbcUrl................................jdbc:postgresql://aklivtsov.tech:5430/prog7_db
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - keepaliveTime................................0
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - leakDetectionThreshold................................0
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - maxLifetime................................1800000
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - maximumPoolSize................................10
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricRegistry................................none
|
|
2026-05-12 14:43:09.168 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricsTrackerFactory................................none
|
|
2026-05-12 14:43:09.169 [main] DEBUG com.zaxxer.hikari.HikariConfig - minimumIdle................................10
|
|
2026-05-12 14:43:09.169 [main] DEBUG com.zaxxer.hikari.HikariConfig - password................................<masked>
|
|
2026-05-12 14:43:09.169 [main] DEBUG com.zaxxer.hikari.HikariConfig - poolName................................"HikariPool-1"
|
|
2026-05-12 14:43:09.169 [main] DEBUG com.zaxxer.hikari.HikariConfig - readOnly................................false
|
|
2026-05-12 14:43:09.169 [main] DEBUG com.zaxxer.hikari.HikariConfig - registerMbeans................................false
|
|
2026-05-12 14:43:09.169 [main] DEBUG com.zaxxer.hikari.HikariConfig - scheduledExecutor................................none
|
|
2026-05-12 14:43:09.169 [main] DEBUG com.zaxxer.hikari.HikariConfig - schema................................none
|
|
2026-05-12 14:43:09.169 [main] DEBUG com.zaxxer.hikari.HikariConfig - threadFactory................................internal
|
|
2026-05-12 14:43:09.169 [main] DEBUG com.zaxxer.hikari.HikariConfig - transactionIsolation................................"TRANSACTION_REPEATABLE_READ"
|
|
2026-05-12 14:43:09.169 [main] DEBUG com.zaxxer.hikari.HikariConfig - username................................"mainUser"
|
|
2026-05-12 14:43:09.169 [main] DEBUG com.zaxxer.hikari.HikariConfig - validationTimeout................................5000
|
|
2026-05-12 14:43:09.170 [main] DEBUG com.zaxxer.hikari.HikariConfig - HikariPool-1 - configuration:
|
|
2026-05-12 14:43:09.170 [main] DEBUG com.zaxxer.hikari.HikariConfig - allowPoolSuspension................................false
|
|
2026-05-12 14:43:09.170 [main] DEBUG com.zaxxer.hikari.HikariConfig - autoCommit................................false
|
|
2026-05-12 14:43:09.170 [main] DEBUG com.zaxxer.hikari.HikariConfig - catalog................................none
|
|
2026-05-12 14:43:09.170 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionInitSql................................none
|
|
2026-05-12 14:43:09.170 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTestQuery................................none
|
|
2026-05-12 14:43:09.170 [main] DEBUG com.zaxxer.hikari.HikariConfig - connectionTimeout................................30000
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSource................................none
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceClassName................................none
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceJNDI................................none
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - dataSourceProperties................................{password=<masked>}
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - driverClassName................................"org.postgresql.Driver"
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - exceptionOverrideClassName................................none
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckProperties................................{}
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - healthCheckRegistry................................none
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - idleTimeout................................600000
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - initializationFailTimeout................................1
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - isolateInternalQueries................................false
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - jdbcUrl................................jdbc:postgresql://aklivtsov.tech:5430/prog7_db
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - keepaliveTime................................0
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - leakDetectionThreshold................................0
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - maxLifetime................................1800000
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - maximumPoolSize................................10
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricRegistry................................none
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - metricsTrackerFactory................................none
|
|
2026-05-12 14:43:09.171 [main] DEBUG com.zaxxer.hikari.HikariConfig - minimumIdle................................10
|
|
2026-05-12 14:43:09.172 [main] DEBUG com.zaxxer.hikari.HikariConfig - password................................<masked>
|
|
2026-05-12 14:43:09.172 [main] DEBUG com.zaxxer.hikari.HikariConfig - poolName................................"HikariPool-1"
|
|
2026-05-12 14:43:09.172 [main] DEBUG com.zaxxer.hikari.HikariConfig - readOnly................................false
|
|
2026-05-12 14:43:09.172 [main] DEBUG com.zaxxer.hikari.HikariConfig - registerMbeans................................false
|
|
2026-05-12 14:43:09.172 [main] DEBUG com.zaxxer.hikari.HikariConfig - scheduledExecutor................................none
|
|
2026-05-12 14:43:09.172 [main] DEBUG com.zaxxer.hikari.HikariConfig - schema................................none
|
|
2026-05-12 14:43:09.172 [main] DEBUG com.zaxxer.hikari.HikariConfig - threadFactory................................internal
|
|
2026-05-12 14:43:09.172 [main] DEBUG com.zaxxer.hikari.HikariConfig - transactionIsolation................................"TRANSACTION_REPEATABLE_READ"
|
|
2026-05-12 14:43:09.172 [main] DEBUG com.zaxxer.hikari.HikariConfig - username................................"mainUser"
|
|
2026-05-12 14:43:09.172 [main] DEBUG com.zaxxer.hikari.HikariConfig - validationTimeout................................5000
|
|
2026-05-12 14:43:09.172 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...
|
|
2026-05-12 14:43:10.946 [main] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@5552768b
|
|
2026-05-12 14:43:10.949 [main] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed.
|
|
2026-05-12 14:43:11.054 [HikariPool-1 housekeeper] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Pool stats (total=1, active=1, idle=0, waiting=0)
|
|
2026-05-12 14:43:11.900 [main] DEBUG c.zaxxer.hikari.pool.ProxyConnection - HikariPool-1 - Executed rollback on connection org.postgresql.jdbc.PgConnection@5552768b due to dirty commit state on close().
|
|
2026-05-12 14:43:12.231 [main] DEBUG Exposed -
|
|
DO $$ BEGIN
|
|
CREATE TYPE weapontype AS ENUM ('hammer', 'shotgun', 'bat');
|
|
EXCEPTION
|
|
WHEN duplicate_object THEN null;
|
|
END $$;
|
|
|
|
2026-05-12 14:43:12.999 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@163b6851
|
|
2026-05-12 14:43:14.034 [HikariPool-1 connection adder] DEBUG com.zaxxer.hikari.pool.HikariPool - HikariPool-1 - Added connection org.postgresql.jdbc.PgConnection@59c18edd
|
|
2026-05-12 14:43:14.370 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing."name", humanbeing.coordinates, humanbeing.last_name, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-12 14:45:46.071 [main] DEBUG Exposed -
|
|
DO $$ BEGIN
|
|
CREATE TYPE weapontype AS ENUM ('hammer', 'shotgun', 'bat');
|
|
EXCEPTION
|
|
WHEN duplicate_object THEN null;
|
|
END $$;
|
|
|
|
2026-05-12 14:45:47.694 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing."name", humanbeing.coordinates, humanbeing.last_name, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-13 22:04:54.875 [main] DEBUG Exposed -
|
|
DO $$ BEGIN
|
|
CREATE TYPE weapontype AS ENUM ('hammer', 'shotgun', 'bat');
|
|
EXCEPTION
|
|
WHEN duplicate_object THEN null;
|
|
END $$;
|
|
|
|
2026-05-13 22:04:57.004 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing.owner_id, humanbeing."name", humanbeing.coordinates, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-13 22:04:57.005 [main] DEBUG Exposed - Transaction attempt #0 failed: org.postgresql.util.PSQLException: ERROR: column humanbeing.owner_id does not exist
|
|
Позиция: 23. Statement(s): SELECT humanbeing.id, humanbeing.owner_id, humanbeing."name", humanbeing.coordinates, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
org.jetbrains.exposed.v1.exceptions.ExposedSQLException: org.postgresql.util.PSQLException: ERROR: column humanbeing.owner_id does not exist
|
|
Позиция: 23
|
|
at org.jetbrains.exposed.v1.jdbc.statements.BlockingExecutableKt.executeIn(BlockingExecutable.kt:158)
|
|
at org.jetbrains.exposed.v1.jdbc.JdbcTransaction.exec$lambda$3(JdbcTransaction.kt:237)
|
|
at org.jetbrains.exposed.v1.core.transactions.TransactionsKt.withThreadLocalTransaction(Transactions.kt:47)
|
|
at org.jetbrains.exposed.v1.jdbc.JdbcTransaction.exec(JdbcTransaction.kt:233)
|
|
at org.jetbrains.exposed.v1.jdbc.JdbcTransaction.execQuery(JdbcTransaction.kt:291)
|
|
at org.jetbrains.exposed.v1.jdbc.JdbcTransaction.execQuery$exposed_jdbc(JdbcTransaction.kt:295)
|
|
at org.jetbrains.exposed.v1.jdbc.Query.iterator(Query.kt:302)
|
|
at kotlin.collections.CollectionsKt___CollectionsKt.toCollection(_Collections.kt:1326)
|
|
at kotlin.collections.CollectionsKt___CollectionsKt.toMutableList(_Collections.kt:1359)
|
|
at kotlin.collections.CollectionsKt___CollectionsKt.toList(_Collections.kt:1350)
|
|
at database.DatabaseManager.test$lambda$3(DatabaseManager.kt:48)
|
|
at org.jetbrains.exposed.v1.jdbc.transactions.TransactionsKt.inTopLevelTransaction$lambda$0(Transactions.kt:193)
|
|
at org.jetbrains.exposed.v1.core.transactions.TransactionsKt.withThreadLocalTransaction(Transactions.kt:53)
|
|
at org.jetbrains.exposed.v1.jdbc.transactions.TransactionsKt.inTopLevelTransaction(Transactions.kt:189)
|
|
at org.jetbrains.exposed.v1.jdbc.transactions.TransactionsKt.transaction(Transactions.kt:134)
|
|
at org.jetbrains.exposed.v1.jdbc.transactions.TransactionsKt.transaction$default(Transactions.kt:107)
|
|
at database.DatabaseManager.test(DatabaseManager.kt:47)
|
|
at database.DatabaseManagerKt.main(DatabaseManager.kt:61)
|
|
Caused by: org.postgresql.util.PSQLException: ERROR: column humanbeing.owner_id does not exist
|
|
Позиция: 23
|
|
at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2736)
|
|
at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2421)
|
|
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372)
|
|
at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:525)
|
|
at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:435)
|
|
at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:196)
|
|
at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:139)
|
|
at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeQuery(ProxyPreparedStatement.java:52)
|
|
at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeQuery(HikariProxyPreparedStatement.java)
|
|
at org.jetbrains.exposed.v1.jdbc.statements.jdbc.JdbcPreparedStatementImpl.executeQuery(JdbcPreparedStatementImpl.kt:53)
|
|
at org.jetbrains.exposed.v1.jdbc.Query.executeInternal(Query.kt:288)
|
|
at org.jetbrains.exposed.v1.jdbc.Query.executeInternal(Query.kt:15)
|
|
at org.jetbrains.exposed.v1.jdbc.statements.BlockingExecutableKt.executeIn(BlockingExecutable.kt:156)
|
|
... 17 common frames omitted
|
|
2026-05-13 22:04:57.011 [main] DEBUG Exposed - Wait 0 milliseconds before retrying
|
|
2026-05-13 22:04:57.294 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing.owner_id, humanbeing."name", humanbeing.coordinates, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-13 22:04:57.294 [main] DEBUG Exposed - Transaction attempt #1 failed: org.postgresql.util.PSQLException: ERROR: column humanbeing.owner_id does not exist
|
|
Позиция: 23. Statement(s): SELECT humanbeing.id, humanbeing.owner_id, humanbeing."name", humanbeing.coordinates, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
org.jetbrains.exposed.v1.exceptions.ExposedSQLException: org.postgresql.util.PSQLException: ERROR: column humanbeing.owner_id does not exist
|
|
Позиция: 23
|
|
at org.jetbrains.exposed.v1.jdbc.statements.BlockingExecutableKt.executeIn(BlockingExecutable.kt:158)
|
|
at org.jetbrains.exposed.v1.jdbc.JdbcTransaction.exec$lambda$3(JdbcTransaction.kt:237)
|
|
at org.jetbrains.exposed.v1.core.transactions.TransactionsKt.withThreadLocalTransaction(Transactions.kt:47)
|
|
at org.jetbrains.exposed.v1.jdbc.JdbcTransaction.exec(JdbcTransaction.kt:233)
|
|
at org.jetbrains.exposed.v1.jdbc.JdbcTransaction.execQuery(JdbcTransaction.kt:291)
|
|
at org.jetbrains.exposed.v1.jdbc.JdbcTransaction.execQuery$exposed_jdbc(JdbcTransaction.kt:295)
|
|
at org.jetbrains.exposed.v1.jdbc.Query.iterator(Query.kt:302)
|
|
at kotlin.collections.CollectionsKt___CollectionsKt.toCollection(_Collections.kt:1326)
|
|
at kotlin.collections.CollectionsKt___CollectionsKt.toMutableList(_Collections.kt:1359)
|
|
at kotlin.collections.CollectionsKt___CollectionsKt.toList(_Collections.kt:1350)
|
|
at database.DatabaseManager.test$lambda$3(DatabaseManager.kt:48)
|
|
at org.jetbrains.exposed.v1.jdbc.transactions.TransactionsKt.inTopLevelTransaction$lambda$0(Transactions.kt:193)
|
|
at org.jetbrains.exposed.v1.core.transactions.TransactionsKt.withThreadLocalTransaction(Transactions.kt:53)
|
|
at org.jetbrains.exposed.v1.jdbc.transactions.TransactionsKt.inTopLevelTransaction(Transactions.kt:189)
|
|
at org.jetbrains.exposed.v1.jdbc.transactions.TransactionsKt.transaction(Transactions.kt:134)
|
|
at org.jetbrains.exposed.v1.jdbc.transactions.TransactionsKt.transaction$default(Transactions.kt:107)
|
|
at database.DatabaseManager.test(DatabaseManager.kt:47)
|
|
at database.DatabaseManagerKt.main(DatabaseManager.kt:61)
|
|
Caused by: org.postgresql.util.PSQLException: ERROR: column humanbeing.owner_id does not exist
|
|
Позиция: 23
|
|
at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2736)
|
|
at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2421)
|
|
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372)
|
|
at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:525)
|
|
at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:435)
|
|
at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:196)
|
|
at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:139)
|
|
at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeQuery(ProxyPreparedStatement.java:52)
|
|
at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeQuery(HikariProxyPreparedStatement.java)
|
|
at org.jetbrains.exposed.v1.jdbc.statements.jdbc.JdbcPreparedStatementImpl.executeQuery(JdbcPreparedStatementImpl.kt:53)
|
|
at org.jetbrains.exposed.v1.jdbc.Query.executeInternal(Query.kt:288)
|
|
at org.jetbrains.exposed.v1.jdbc.Query.executeInternal(Query.kt:15)
|
|
at org.jetbrains.exposed.v1.jdbc.statements.BlockingExecutableKt.executeIn(BlockingExecutable.kt:156)
|
|
... 17 common frames omitted
|
|
2026-05-13 22:04:57.294 [main] DEBUG Exposed - Wait 0 milliseconds before retrying
|
|
2026-05-13 22:04:57.585 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing.owner_id, humanbeing."name", humanbeing.coordinates, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-13 22:04:57.585 [main] DEBUG Exposed - Transaction attempt #2 failed: org.postgresql.util.PSQLException: ERROR: column humanbeing.owner_id does not exist
|
|
Позиция: 23. Statement(s): SELECT humanbeing.id, humanbeing.owner_id, humanbeing."name", humanbeing.coordinates, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
org.jetbrains.exposed.v1.exceptions.ExposedSQLException: org.postgresql.util.PSQLException: ERROR: column humanbeing.owner_id does not exist
|
|
Позиция: 23
|
|
at org.jetbrains.exposed.v1.jdbc.statements.BlockingExecutableKt.executeIn(BlockingExecutable.kt:158)
|
|
at org.jetbrains.exposed.v1.jdbc.JdbcTransaction.exec$lambda$3(JdbcTransaction.kt:237)
|
|
at org.jetbrains.exposed.v1.core.transactions.TransactionsKt.withThreadLocalTransaction(Transactions.kt:47)
|
|
at org.jetbrains.exposed.v1.jdbc.JdbcTransaction.exec(JdbcTransaction.kt:233)
|
|
at org.jetbrains.exposed.v1.jdbc.JdbcTransaction.execQuery(JdbcTransaction.kt:291)
|
|
at org.jetbrains.exposed.v1.jdbc.JdbcTransaction.execQuery$exposed_jdbc(JdbcTransaction.kt:295)
|
|
at org.jetbrains.exposed.v1.jdbc.Query.iterator(Query.kt:302)
|
|
at kotlin.collections.CollectionsKt___CollectionsKt.toCollection(_Collections.kt:1326)
|
|
at kotlin.collections.CollectionsKt___CollectionsKt.toMutableList(_Collections.kt:1359)
|
|
at kotlin.collections.CollectionsKt___CollectionsKt.toList(_Collections.kt:1350)
|
|
at database.DatabaseManager.test$lambda$3(DatabaseManager.kt:48)
|
|
at org.jetbrains.exposed.v1.jdbc.transactions.TransactionsKt.inTopLevelTransaction$lambda$0(Transactions.kt:193)
|
|
at org.jetbrains.exposed.v1.core.transactions.TransactionsKt.withThreadLocalTransaction(Transactions.kt:53)
|
|
at org.jetbrains.exposed.v1.jdbc.transactions.TransactionsKt.inTopLevelTransaction(Transactions.kt:189)
|
|
at org.jetbrains.exposed.v1.jdbc.transactions.TransactionsKt.transaction(Transactions.kt:134)
|
|
at org.jetbrains.exposed.v1.jdbc.transactions.TransactionsKt.transaction$default(Transactions.kt:107)
|
|
at database.DatabaseManager.test(DatabaseManager.kt:47)
|
|
at database.DatabaseManagerKt.main(DatabaseManager.kt:61)
|
|
Caused by: org.postgresql.util.PSQLException: ERROR: column humanbeing.owner_id does not exist
|
|
Позиция: 23
|
|
at org.postgresql.core.v3.QueryExecutorImpl.receiveErrorResponse(QueryExecutorImpl.java:2736)
|
|
at org.postgresql.core.v3.QueryExecutorImpl.processResults(QueryExecutorImpl.java:2421)
|
|
at org.postgresql.core.v3.QueryExecutorImpl.execute(QueryExecutorImpl.java:372)
|
|
at org.postgresql.jdbc.PgStatement.executeInternal(PgStatement.java:525)
|
|
at org.postgresql.jdbc.PgStatement.execute(PgStatement.java:435)
|
|
at org.postgresql.jdbc.PgPreparedStatement.executeWithFlags(PgPreparedStatement.java:196)
|
|
at org.postgresql.jdbc.PgPreparedStatement.executeQuery(PgPreparedStatement.java:139)
|
|
at com.zaxxer.hikari.pool.ProxyPreparedStatement.executeQuery(ProxyPreparedStatement.java:52)
|
|
at com.zaxxer.hikari.pool.HikariProxyPreparedStatement.executeQuery(HikariProxyPreparedStatement.java)
|
|
at org.jetbrains.exposed.v1.jdbc.statements.jdbc.JdbcPreparedStatementImpl.executeQuery(JdbcPreparedStatementImpl.kt:53)
|
|
at org.jetbrains.exposed.v1.jdbc.Query.executeInternal(Query.kt:288)
|
|
at org.jetbrains.exposed.v1.jdbc.Query.executeInternal(Query.kt:15)
|
|
at org.jetbrains.exposed.v1.jdbc.statements.BlockingExecutableKt.executeIn(BlockingExecutable.kt:156)
|
|
... 17 common frames omitted
|
|
2026-05-13 22:04:57.585 [main] DEBUG Exposed - Wait 0 milliseconds before retrying
|
|
2026-05-13 22:05:48.871 [main] DEBUG Exposed -
|
|
DO $$ BEGIN
|
|
CREATE TYPE weapontype AS ENUM ('hammer', 'shotgun', 'bat');
|
|
EXCEPTION
|
|
WHEN duplicate_object THEN null;
|
|
END $$;
|
|
|
|
2026-05-13 22:05:49.652 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS coordinates (id uuid PRIMARY KEY, x BIGINT NULL, y INT NULL)
|
|
2026-05-13 22:05:50.101 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS car (id uuid PRIMARY KEY, cool BOOLEAN NULL)
|
|
2026-05-13 22:05:50.714 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS humanbeing (id uuid PRIMARY KEY, owner_id uuid NOT NULL, "name" TEXT NOT NULL, coordinates uuid NOT NULL, creation_date DATE NOT NULL, real_hero BOOLEAN NOT NULL, has_toothpick BOOLEAN NOT NULL, impact_speed DOUBLE PRECISION NOT NULL, soundtrack_name TEXT NOT NULL, minutes_of_waiting REAL NOT NULL, car uuid NOT NULL, weapon_type weapontype DEFAULT NULL NULL, CONSTRAINT fk_humanbeing_owner_id__id FOREIGN KEY (owner_id) REFERENCES "User"(id) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT fk_humanbeing_coordinates__id FOREIGN KEY (coordinates) REFERENCES coordinates(id) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT fk_humanbeing_car__id FOREIGN KEY (car) REFERENCES car(id) ON DELETE RESTRICT ON UPDATE RESTRICT)
|
|
2026-05-13 22:05:51.294 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing.owner_id, humanbeing."name", humanbeing.coordinates, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-13 22:13:14.480 [main] DEBUG Exposed -
|
|
DO $$ BEGIN
|
|
CREATE TYPE weapontype AS ENUM ('hammer', 'shotgun', 'bat');
|
|
EXCEPTION
|
|
WHEN duplicate_object THEN null;
|
|
END $$;
|
|
|
|
2026-05-13 22:13:16.480 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing.owner_id, humanbeing."name", humanbeing.coordinates, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-13 22:15:46.585 [main] DEBUG Exposed -
|
|
DO $$ BEGIN
|
|
CREATE TYPE weapontype AS ENUM ('hammer', 'shotgun', 'bat');
|
|
EXCEPTION
|
|
WHEN duplicate_object THEN null;
|
|
END $$;
|
|
|
|
2026-05-13 22:15:48.121 [main] DEBUG Exposed - CREATE TABLE IF NOT EXISTS "user" (id uuid PRIMARY KEY, username TEXT NOT NULL, "password" TEXT NOT NULL, email TEXT NOT NULL)
|
|
2026-05-13 22:15:48.709 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing.owner_id, humanbeing."name", humanbeing.coordinates, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-13 22:16:01.383 [main] DEBUG Exposed -
|
|
DO $$ BEGIN
|
|
CREATE TYPE weapontype AS ENUM ('hammer', 'shotgun', 'bat');
|
|
EXCEPTION
|
|
WHEN duplicate_object THEN null;
|
|
END $$;
|
|
|
|
2026-05-13 22:16:03.499 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing.owner_id, humanbeing."name", humanbeing.coordinates, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|
|
2026-05-13 22:16:30.041 [main] DEBUG Exposed -
|
|
DO $$ BEGIN
|
|
CREATE TYPE weapontype AS ENUM ('hammer', 'shotgun', 'bat');
|
|
EXCEPTION
|
|
WHEN duplicate_object THEN null;
|
|
END $$;
|
|
|
|
2026-05-13 22:16:31.933 [main] DEBUG Exposed - SELECT humanbeing.id, humanbeing.owner_id, humanbeing."name", humanbeing.coordinates, humanbeing.creation_date, humanbeing.real_hero, humanbeing.has_toothpick, humanbeing.impact_speed, humanbeing.soundtrack_name, humanbeing.minutes_of_waiting, humanbeing.car, humanbeing.weapon_type FROM humanbeing
|