diff --git a/buildSrc/src/main/kotlin/pg-index-health.java-conventions.gradle.kts b/buildSrc/src/main/kotlin/pg-index-health.java-conventions.gradle.kts index c450d4e9..6413e00e 100644 --- a/buildSrc/src/main/kotlin/pg-index-health.java-conventions.gradle.kts +++ b/buildSrc/src/main/kotlin/pg-index-health.java-conventions.gradle.kts @@ -150,7 +150,7 @@ tasks { } checkstyle { - toolVersion = "10.12.5" + toolVersion = "10.12.7" configFile = file("../config/checkstyle/checkstyle.xml") isIgnoreFailures = false maxWarnings = 0 diff --git a/config/checkstyle/checkstyle.xml b/config/checkstyle/checkstyle.xml index 3c21942a..8642292b 100644 --- a/config/checkstyle/checkstyle.xml +++ b/config/checkstyle/checkstyle.xml @@ -20,7 +20,7 @@ + value="/*\n * Copyright (c) 2019-2024. Ivan Vakhrushev and others.\n * https://github.com/mfvanek/pg-index-health\n *\n * This file is a part of "pg-index-health" - a Java library for\n * analyzing and maintaining indexes health in PostgreSQL databases.\n *\n * Licensed under the Apache License 2.0\n */"/> diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/AbstractDbMigrationGenerator.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/AbstractDbMigrationGenerator.java index f5d824ac..23f76449 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/AbstractDbMigrationGenerator.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/AbstractDbMigrationGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/AbstractOptionsAwareSqlGenerator.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/AbstractOptionsAwareSqlGenerator.java index c25d1818..97926da3 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/AbstractOptionsAwareSqlGenerator.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/AbstractOptionsAwareSqlGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/ColumnWithSerialTypeMigrationGenerator.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/ColumnWithSerialTypeMigrationGenerator.java index afde4d02..fac0cf40 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/ColumnWithSerialTypeMigrationGenerator.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/ColumnWithSerialTypeMigrationGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/DbMigrationGenerator.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/DbMigrationGenerator.java index 2c572fae..6a9900ce 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/DbMigrationGenerator.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/DbMigrationGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/DropDefaultValueGenerator.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/DropDefaultValueGenerator.java index 3f6003ee..20b705e9 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/DropDefaultValueGenerator.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/DropDefaultValueGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/DropSequenceGenerator.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/DropSequenceGenerator.java index 8128b7ac..fabebc6c 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/DropSequenceGenerator.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/DropSequenceGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/ForeignKeyMigrationGenerator.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/ForeignKeyMigrationGenerator.java index b413a558..44ba0688 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/ForeignKeyMigrationGenerator.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/ForeignKeyMigrationGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/GeneratingOptions.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/GeneratingOptions.java index e2d18301..83e0862b 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/GeneratingOptions.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/GeneratingOptions.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/IdxPosition.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/IdxPosition.java index 181f8d6c..69f80ac7 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/IdxPosition.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/IdxPosition.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/PgIdentifierNameGenerator.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/PgIdentifierNameGenerator.java index c27fddf5..fb924ef4 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/PgIdentifierNameGenerator.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/PgIdentifierNameGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/PgIndexOnForeignKeyGenerator.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/PgIndexOnForeignKeyGenerator.java index 336af2be..aea6ba3e 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/PgIndexOnForeignKeyGenerator.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/PgIndexOnForeignKeyGenerator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/utils/NameUtils.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/utils/NameUtils.java index 06b5171d..17ad398a 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/utils/NameUtils.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/utils/NameUtils.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/utils/StringUtils.java b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/utils/StringUtils.java index a0643d23..f2c6e5a4 100644 --- a/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/utils/StringUtils.java +++ b/pg-index-health-generator/src/main/java/io/github/mfvanek/pg/generator/utils/StringUtils.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/ColumnWithSerialTypeMigrationGeneratorTest.java b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/ColumnWithSerialTypeMigrationGeneratorTest.java index cdac7d81..d7b5fe9f 100644 --- a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/ColumnWithSerialTypeMigrationGeneratorTest.java +++ b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/ColumnWithSerialTypeMigrationGeneratorTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/DropDefaultValueGeneratorTest.java b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/DropDefaultValueGeneratorTest.java index 21b70368..de833c0c 100644 --- a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/DropDefaultValueGeneratorTest.java +++ b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/DropDefaultValueGeneratorTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/DropSequenceGeneratorTest.java b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/DropSequenceGeneratorTest.java index 2a40e047..d19061a0 100644 --- a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/DropSequenceGeneratorTest.java +++ b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/DropSequenceGeneratorTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/ForeignKeyMigrationGeneratorTest.java b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/ForeignKeyMigrationGeneratorTest.java index e4c98af4..dae9ad38 100644 --- a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/ForeignKeyMigrationGeneratorTest.java +++ b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/ForeignKeyMigrationGeneratorTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/GeneratingOptionsTest.java b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/GeneratingOptionsTest.java index e761db72..4f1aebae 100644 --- a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/GeneratingOptionsTest.java +++ b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/GeneratingOptionsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/PgIdentifierNameGeneratorTest.java b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/PgIdentifierNameGeneratorTest.java index 027786d6..8fdb2a2f 100644 --- a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/PgIdentifierNameGeneratorTest.java +++ b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/PgIdentifierNameGeneratorTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/PgIndexOnForeignKeyGeneratorTest.java b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/PgIndexOnForeignKeyGeneratorTest.java index 0d2a3137..09216ee9 100644 --- a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/PgIndexOnForeignKeyGeneratorTest.java +++ b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/PgIndexOnForeignKeyGeneratorTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/utils/NameUtilsTest.java b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/utils/NameUtilsTest.java index b81027b0..7df2594b 100644 --- a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/utils/NameUtilsTest.java +++ b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/utils/NameUtilsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/utils/StringUtilsTest.java b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/utils/StringUtilsTest.java index 7f099a3c..c1807a14 100644 --- a/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/utils/StringUtilsTest.java +++ b/pg-index-health-generator/src/test/java/io/github/mfvanek/pg/generator/utils/StringUtilsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/ConnectionCredentials.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/ConnectionCredentials.java index 27a3a8ec..a059b7ca 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/ConnectionCredentials.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/ConnectionCredentials.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnection.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnection.java index 573717ab..a2518a70 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnection.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnection.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionFactory.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionFactory.java index f5e89f31..5c68184f 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionFactory.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionFactoryImpl.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionFactoryImpl.java index e700f38a..10b83748 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionFactoryImpl.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionFactoryImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionImpl.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionImpl.java index 550576b6..b389067f 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionImpl.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HostAware.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HostAware.java index 5815be0e..c1dfca82 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HostAware.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/HostAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnection.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnection.java index a3c9c55b..17026f48 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnection.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnection.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionFactory.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionFactory.java index 98bdfceb..2e97e54b 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionFactory.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionFactory.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionFactoryImpl.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionFactoryImpl.java index 30309f90..f50f7b45 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionFactoryImpl.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionFactoryImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionHelper.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionHelper.java index bbbf680b..b92ca2a1 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionHelper.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionHelper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionImpl.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionImpl.java index 9646928a..3b55cb24 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionImpl.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionValidators.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionValidators.java index 3f1a23b2..dbcf6784 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionValidators.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgConnectionValidators.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgHost.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgHost.java index 87071e19..3d034d7e 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgHost.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgHostImpl.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgHostImpl.java index 1d66f603..5378c60d 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgHostImpl.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgHostImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgSqlException.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgSqlException.java index 79e90979..3616a71f 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgSqlException.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgSqlException.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgUrlParser.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgUrlParser.java index 0c4f850d..ae9ec284 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgUrlParser.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PgUrlParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PrimaryHostDeterminer.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PrimaryHostDeterminer.java index 63a65a43..db8868a7 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PrimaryHostDeterminer.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PrimaryHostDeterminer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PrimaryHostDeterminerImpl.java b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PrimaryHostDeterminerImpl.java index c8ad235b..fe39373d 100644 --- a/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PrimaryHostDeterminerImpl.java +++ b/pg-index-health-jdbc-connection/src/main/java/io/github/mfvanek/pg/connection/PrimaryHostDeterminerImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/ConnectionCredentialsTest.java b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/ConnectionCredentialsTest.java index 382e2b0f..072efab4 100644 --- a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/ConnectionCredentialsTest.java +++ b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/ConnectionCredentialsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionFactoryImplTest.java b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionFactoryImplTest.java index b70dec52..5b1a9b5b 100644 --- a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionFactoryImplTest.java +++ b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionFactoryImplTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionImplTest.java b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionImplTest.java index 7eefbc6b..2cd0cec0 100644 --- a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionImplTest.java +++ b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionImplTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionUnitTest.java b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionUnitTest.java index 9b29b3b4..956a95cf 100644 --- a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionUnitTest.java +++ b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/HighAvailabilityPgConnectionUnitTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionFactoryImplTest.java b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionFactoryImplTest.java index 776937bb..ab4dfbb3 100644 --- a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionFactoryImplTest.java +++ b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionFactoryImplTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionHelperTest.java b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionHelperTest.java index 2b24b37c..cca0e160 100644 --- a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionHelperTest.java +++ b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionHelperTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionImplTest.java b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionImplTest.java index df4e9649..e83eeadf 100644 --- a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionImplTest.java +++ b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionImplTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionValidatorsTest.java b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionValidatorsTest.java index 59f2f508..24180180 100644 --- a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionValidatorsTest.java +++ b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgConnectionValidatorsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgHostImplTest.java b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgHostImplTest.java index c51775b6..f97819ae 100644 --- a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgHostImplTest.java +++ b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgHostImplTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgUrlParserTest.java b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgUrlParserTest.java index 150c9005..a9b3d07d 100644 --- a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgUrlParserTest.java +++ b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PgUrlParserTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PrimaryHostDeterminerImplTest.java b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PrimaryHostDeterminerImplTest.java index 900af6dc..663ae3b4 100644 --- a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PrimaryHostDeterminerImplTest.java +++ b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/connection/PrimaryHostDeterminerImplTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/support/DatabaseAwareTestBase.java b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/support/DatabaseAwareTestBase.java index 8e8903d7..7b64bb98 100644 --- a/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/support/DatabaseAwareTestBase.java +++ b/pg-index-health-jdbc-connection/src/test/java/io/github/mfvanek/pg/support/DatabaseAwareTestBase.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/testFixtures/java/io/github/mfvanek/pg/support/LogsCaptor.java b/pg-index-health-jdbc-connection/src/testFixtures/java/io/github/mfvanek/pg/support/LogsCaptor.java index b7885505..3951033d 100644 --- a/pg-index-health-jdbc-connection/src/testFixtures/java/io/github/mfvanek/pg/support/LogsCaptor.java +++ b/pg-index-health-jdbc-connection/src/testFixtures/java/io/github/mfvanek/pg/support/LogsCaptor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-jdbc-connection/src/testFixtures/java/io/github/mfvanek/pg/support/PostgresVersionReader.java b/pg-index-health-jdbc-connection/src/testFixtures/java/io/github/mfvanek/pg/support/PostgresVersionReader.java index 2237aba1..da596246 100644 --- a/pg-index-health-jdbc-connection/src/testFixtures/java/io/github/mfvanek/pg/support/PostgresVersionReader.java +++ b/pg-index-health-jdbc-connection/src/testFixtures/java/io/github/mfvanek/pg/support/PostgresVersionReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/BloatAware.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/BloatAware.java index 9c1027d1..f575e0f4 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/BloatAware.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/BloatAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/DbObject.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/DbObject.java index 679f7bc3..25ee2028 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/DbObject.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/DbObject.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/MemoryUnit.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/MemoryUnit.java index 0f898e4f..c16a8b2e 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/MemoryUnit.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/MemoryUnit.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/PgContext.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/PgContext.java index bc5ab5c9..9c83fff7 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/PgContext.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/PgContext.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/Column.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/Column.java index 909ef836..75e21826 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/Column.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/Column.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/ColumnNameAware.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/ColumnNameAware.java index 633542b8..9990901c 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/ColumnNameAware.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/ColumnNameAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/ColumnWithSerialType.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/ColumnWithSerialType.java index 5c2e74b3..84b6c0d3 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/ColumnWithSerialType.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/ColumnWithSerialType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/SerialType.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/SerialType.java index e87f67ee..23e17401 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/SerialType.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/column/SerialType.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/constraint/ForeignKey.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/constraint/ForeignKey.java index b6aeb769..715d9408 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/constraint/ForeignKey.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/constraint/ForeignKey.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/function/StoredFunction.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/function/StoredFunction.java index e9ee4a12..cadf368b 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/function/StoredFunction.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/function/StoredFunction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/DuplicatedIndexes.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/DuplicatedIndexes.java index 3c2b754c..7ddc8d3f 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/DuplicatedIndexes.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/DuplicatedIndexes.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/Index.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/Index.java index 9bacdfc8..65e29cf3 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/Index.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/Index.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexBloatAware.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexBloatAware.java index 485b8040..8d04b409 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexBloatAware.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexBloatAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexNameAware.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexNameAware.java index 81f4ad32..3fae81c5 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexNameAware.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexNameAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexSizeAware.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexSizeAware.java index 250f49c1..7fa55d53 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexSizeAware.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexSizeAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexWithBloat.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexWithBloat.java index d9f0464c..e764b0f0 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexWithBloat.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexWithBloat.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexWithNulls.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexWithNulls.java index f6f63e45..1a91255c 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexWithNulls.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexWithNulls.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexWithSize.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexWithSize.java index cfffe47b..b303298f 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexWithSize.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/IndexWithSize.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/UnusedIndex.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/UnusedIndex.java index 34ad241c..2e4f336b 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/UnusedIndex.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/UnusedIndex.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/utils/DuplicatedIndexesParser.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/utils/DuplicatedIndexesParser.java index 1174f2ab..2878dfe3 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/utils/DuplicatedIndexesParser.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/index/utils/DuplicatedIndexesParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/AbstractTableAware.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/AbstractTableAware.java index 82e3a458..b6cc7afc 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/AbstractTableAware.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/AbstractTableAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/Table.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/Table.java index 35720414..7fe0b38b 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/Table.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/Table.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableBloatAware.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableBloatAware.java index 31b2e38b..d3d24c60 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableBloatAware.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableBloatAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableNameAware.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableNameAware.java index 308766ab..2c0991c8 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableNameAware.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableNameAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableSizeAware.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableSizeAware.java index dfd08bc3..9903916b 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableSizeAware.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableSizeAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableWithBloat.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableWithBloat.java index c1c7afdc..75a1b55c 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableWithBloat.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableWithBloat.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableWithMissingIndex.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableWithMissingIndex.java index 83b98132..44bc5772 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableWithMissingIndex.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/table/TableWithMissingIndex.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/validation/Validators.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/validation/Validators.java index f1022054..e5bc4aa1 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/validation/Validators.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/model/validation/Validators.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ImportantParam.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ImportantParam.java index 3347853d..04469932 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ImportantParam.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ImportantParam.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ParamNameAware.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ParamNameAware.java index 17d1000c..dee4b51f 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ParamNameAware.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ParamNameAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/PgParam.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/PgParam.java index d341e449..792532a9 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/PgParam.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/PgParam.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/PgParamImpl.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/PgParamImpl.java index dfe5c945..f1f89dee 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/PgParamImpl.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/PgParamImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ServerSpecification.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ServerSpecification.java index f73f0eb4..3e75b569 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ServerSpecification.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ServerSpecification.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ServerSpecificationBuilder.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ServerSpecificationBuilder.java index c89b525e..f1f1b047 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ServerSpecificationBuilder.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/ServerSpecificationBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/validation/ParamValidators.java b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/validation/ParamValidators.java index 67cba563..b74e1e86 100644 --- a/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/validation/ParamValidators.java +++ b/pg-index-health-model/src/main/java/io/github/mfvanek/pg/settings/validation/ParamValidators.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/MemoryUnitTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/MemoryUnitTest.java index dea6547c..01f606a5 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/MemoryUnitTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/MemoryUnitTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/PgContextTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/PgContextTest.java index 182c85be..a265e6b1 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/PgContextTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/PgContextTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/column/ColumnTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/column/ColumnTest.java index 8938c68c..15822d42 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/column/ColumnTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/column/ColumnTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/column/ColumnWithSerialTypeTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/column/ColumnWithSerialTypeTest.java index 277b1d74..227acb76 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/column/ColumnWithSerialTypeTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/column/ColumnWithSerialTypeTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/column/SerialTypeTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/column/SerialTypeTest.java index 81a4ba9c..51223407 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/column/SerialTypeTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/column/SerialTypeTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/constraint/ForeignKeyTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/constraint/ForeignKeyTest.java index 6b7c3923..a0705e73 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/constraint/ForeignKeyTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/constraint/ForeignKeyTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/function/StoredFunctionTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/function/StoredFunctionTest.java index a21861bc..0d912da1 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/function/StoredFunctionTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/function/StoredFunctionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/DuplicatedIndexesTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/DuplicatedIndexesTest.java index 6602722a..d28689cb 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/DuplicatedIndexesTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/DuplicatedIndexesTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexTest.java index 2c784224..13070fab 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexWithBloatTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexWithBloatTest.java index df492cf6..f655a569 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexWithBloatTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexWithBloatTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexWithNullsTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexWithNullsTest.java index fedd70f0..70aa7ea5 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexWithNullsTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexWithNullsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexWithSizeTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexWithSizeTest.java index ba86a759..df6f1d1b 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexWithSizeTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/IndexWithSizeTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/UnusedIndexTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/UnusedIndexTest.java index fa02f523..e4db4065 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/UnusedIndexTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/UnusedIndexTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/utils/DuplicatedIndexesParserTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/utils/DuplicatedIndexesParserTest.java index 808d0d44..ef827ffd 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/utils/DuplicatedIndexesParserTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/index/utils/DuplicatedIndexesParserTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/table/TableTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/table/TableTest.java index 9347daef..7e588eae 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/table/TableTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/table/TableTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/table/TableWithBloatTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/table/TableWithBloatTest.java index 55e9e2d5..f36a28f2 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/table/TableWithBloatTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/table/TableWithBloatTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/table/TableWithMissingIndexTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/table/TableWithMissingIndexTest.java index df1f1792..b9ec150c 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/table/TableWithMissingIndexTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/table/TableWithMissingIndexTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/validation/ValidatorsTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/validation/ValidatorsTest.java index 8cf01ab9..411402ec 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/validation/ValidatorsTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/model/validation/ValidatorsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/ImportantParamTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/ImportantParamTest.java index 3a3510cb..aaa97ce1 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/ImportantParamTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/ImportantParamTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/PgParamImplTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/PgParamImplTest.java index c935c6d4..d1d50abb 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/PgParamImplTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/PgParamImplTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/ServerSpecificationBuilderTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/ServerSpecificationBuilderTest.java index 7e0276e0..741240a0 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/ServerSpecificationBuilderTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/ServerSpecificationBuilderTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/ServerSpecificationTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/ServerSpecificationTest.java index 7457699c..e9e83a2b 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/ServerSpecificationTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/ServerSpecificationTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/validation/ParamValidatorsTest.java b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/validation/ParamValidatorsTest.java index 728ef8b0..b5b92e6a 100644 --- a/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/validation/ParamValidatorsTest.java +++ b/pg-index-health-model/src/test/java/io/github/mfvanek/pg/settings/validation/ParamValidatorsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-model/src/testFixtures/java/io/github/mfvanek/pg/support/TestUtils.java b/pg-index-health-model/src/testFixtures/java/io/github/mfvanek/pg/support/TestUtils.java index db1a9a7b..fec3b60e 100644 --- a/pg-index-health-model/src/testFixtures/java/io/github/mfvanek/pg/support/TestUtils.java +++ b/pg-index-health-model/src/testFixtures/java/io/github/mfvanek/pg/support/TestUtils.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlClusterAliasHolder.java b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlClusterAliasHolder.java index 9ae1b309..d04ef010 100644 --- a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlClusterAliasHolder.java +++ b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlClusterAliasHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlClusterWrapper.java b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlClusterWrapper.java index 8c21d283..f3137386 100644 --- a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlClusterWrapper.java +++ b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlClusterWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlContainerWrapper.java b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlContainerWrapper.java index bcf6f334..9fa38246 100644 --- a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlContainerWrapper.java +++ b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlContainerWrapper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlDataSourceHelper.java b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlDataSourceHelper.java index ef118ff6..71c3b2c9 100644 --- a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlDataSourceHelper.java +++ b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgreSqlDataSourceHelper.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgresBitnamiRepmgrContainer.java b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgresBitnamiRepmgrContainer.java index dc32cf36..f7af1b94 100644 --- a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgresBitnamiRepmgrContainer.java +++ b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgresBitnamiRepmgrContainer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgresVersionAware.java b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgresVersionAware.java index 66cde651..6259f252 100644 --- a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgresVersionAware.java +++ b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgresVersionAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgresVersionHolder.java b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgresVersionHolder.java index 50e94fa7..327056ea 100644 --- a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgresVersionHolder.java +++ b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/PostgresVersionHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/annotations/ExcludeFromJacocoGeneratedReport.java b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/annotations/ExcludeFromJacocoGeneratedReport.java index 6a127917..fb71b5c0 100644 --- a/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/annotations/ExcludeFromJacocoGeneratedReport.java +++ b/pg-index-health-testing/src/main/java/io/github/mfvanek/pg/testing/annotations/ExcludeFromJacocoGeneratedReport.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlClusterAliasHolderTest.java b/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlClusterAliasHolderTest.java index 0a4820fc..02d3f313 100644 --- a/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlClusterAliasHolderTest.java +++ b/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlClusterAliasHolderTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlClusterWrapperTest.java b/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlClusterWrapperTest.java index fcd75b91..7e1e18ec 100644 --- a/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlClusterWrapperTest.java +++ b/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlClusterWrapperTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlContainerWrapperTest.java b/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlContainerWrapperTest.java index 5e281342..b21df916 100644 --- a/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlContainerWrapperTest.java +++ b/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlContainerWrapperTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlDataSourceHelperTest.java b/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlDataSourceHelperTest.java index 3cf35db5..831559a7 100644 --- a/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlDataSourceHelperTest.java +++ b/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgreSqlDataSourceHelperTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgresBitnamiRepmgrContainerTest.java b/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgresBitnamiRepmgrContainerTest.java index 960ff1e1..babaf180 100644 --- a/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgresBitnamiRepmgrContainerTest.java +++ b/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgresBitnamiRepmgrContainerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgresVersionHolderTest.java b/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgresVersionHolderTest.java index 4e52bc9f..1e913b36 100644 --- a/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgresVersionHolderTest.java +++ b/pg-index-health-testing/src/test/java/io/github/mfvanek/pg/testing/PostgresVersionHolderTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/AbstractCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/AbstractCheckOnCluster.java index 9043b55e..b057f164 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/AbstractCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/AbstractCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithJsonTypeCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithJsonTypeCheckOnCluster.java index 39bf275e..a686d58a 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithJsonTypeCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithJsonTypeCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithSerialTypesCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithSerialTypesCheckOnCluster.java index 42fe8eb5..aa0130d7 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithSerialTypesCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithSerialTypesCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithoutDescriptionCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithoutDescriptionCheckOnCluster.java index b04a0563..03ec66f0 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithoutDescriptionCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithoutDescriptionCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/DuplicatedIndexesCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/DuplicatedIndexesCheckOnCluster.java index 02233101..d5b828ad 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/DuplicatedIndexesCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/DuplicatedIndexesCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ForeignKeysNotCoveredWithIndexCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ForeignKeysNotCoveredWithIndexCheckOnCluster.java index a7150b0d..7ca5cf15 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ForeignKeysNotCoveredWithIndexCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/ForeignKeysNotCoveredWithIndexCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/FunctionsWithoutDescriptionCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/FunctionsWithoutDescriptionCheckOnCluster.java index 092b7398..1572d5d4 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/FunctionsWithoutDescriptionCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/FunctionsWithoutDescriptionCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/IndexesWithBloatCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/IndexesWithBloatCheckOnCluster.java index 688d16c7..5e9ca5d0 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/IndexesWithBloatCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/IndexesWithBloatCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/IndexesWithNullValuesCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/IndexesWithNullValuesCheckOnCluster.java index ea33fa5b..b8b2cf34 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/IndexesWithNullValuesCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/IndexesWithNullValuesCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/IntersectedIndexesCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/IntersectedIndexesCheckOnCluster.java index 9e8d8e8a..ea2534b9 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/IntersectedIndexesCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/IntersectedIndexesCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/InvalidIndexesCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/InvalidIndexesCheckOnCluster.java index ac2a33bd..3c17c464 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/InvalidIndexesCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/InvalidIndexesCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithBloatCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithBloatCheckOnCluster.java index 5603b8a6..821399dc 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithBloatCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithBloatCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithMissingIndexesCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithMissingIndexesCheckOnCluster.java index fbf3e188..53a3abcd 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithMissingIndexesCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithMissingIndexesCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutDescriptionCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutDescriptionCheckOnCluster.java index cae59415..9c8e6c92 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutDescriptionCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutDescriptionCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutPrimaryKeyCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutPrimaryKeyCheckOnCluster.java index 9172699f..f2d98a84 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutPrimaryKeyCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutPrimaryKeyCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/UnusedIndexesCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/UnusedIndexesCheckOnCluster.java index 8359b2f6..e6ce7d50 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/UnusedIndexesCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/cluster/UnusedIndexesCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/extractors/ColumnExtractor.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/extractors/ColumnExtractor.java index a446efbc..4401fc63 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/extractors/ColumnExtractor.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/extractors/ColumnExtractor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/extractors/ColumnWithSerialTypeExtractor.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/extractors/ColumnWithSerialTypeExtractor.java index e2bd5d7c..ea828792 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/extractors/ColumnWithSerialTypeExtractor.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/extractors/ColumnWithSerialTypeExtractor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/extractors/TableExtractor.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/extractors/TableExtractor.java index da292c54..fb3f66d2 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/extractors/TableExtractor.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/extractors/TableExtractor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/AbstractCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/AbstractCheckOnHost.java index e1ae1b81..53eeb8dc 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/AbstractCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/AbstractCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ColumnsWithJsonTypeCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ColumnsWithJsonTypeCheckOnHost.java index 500f69dd..583758c2 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ColumnsWithJsonTypeCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ColumnsWithJsonTypeCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ColumnsWithSerialTypesCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ColumnsWithSerialTypesCheckOnHost.java index 04d4360e..30a92bc5 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ColumnsWithSerialTypesCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ColumnsWithSerialTypesCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ColumnsWithoutDescriptionCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ColumnsWithoutDescriptionCheckOnHost.java index ad766bb1..35e88ad6 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ColumnsWithoutDescriptionCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ColumnsWithoutDescriptionCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/DuplicatedIndexesCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/DuplicatedIndexesCheckOnHost.java index 897a9e5a..55259171 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/DuplicatedIndexesCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/DuplicatedIndexesCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ForeignKeysNotCoveredWithIndexCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ForeignKeysNotCoveredWithIndexCheckOnHost.java index 230d26c8..7272f912 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ForeignKeysNotCoveredWithIndexCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/ForeignKeysNotCoveredWithIndexCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/FunctionsWithoutDescriptionCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/FunctionsWithoutDescriptionCheckOnHost.java index a48b3f91..347264ef 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/FunctionsWithoutDescriptionCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/FunctionsWithoutDescriptionCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/IndexesWithBloatCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/IndexesWithBloatCheckOnHost.java index 9db91438..c3c814c9 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/IndexesWithBloatCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/IndexesWithBloatCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/IndexesWithNullValuesCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/IndexesWithNullValuesCheckOnHost.java index 318163ae..f38cb300 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/IndexesWithNullValuesCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/IndexesWithNullValuesCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/IntersectedIndexesCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/IntersectedIndexesCheckOnHost.java index 1817b12d..b4bf5cb5 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/IntersectedIndexesCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/IntersectedIndexesCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/InvalidIndexesCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/InvalidIndexesCheckOnHost.java index 3fd99000..2989fe33 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/InvalidIndexesCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/InvalidIndexesCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithBloatCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithBloatCheckOnHost.java index 419265aa..1aeb958b 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithBloatCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithBloatCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithMissingIndexesCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithMissingIndexesCheckOnHost.java index 8baa803c..c43456e2 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithMissingIndexesCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithMissingIndexesCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithoutDescriptionCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithoutDescriptionCheckOnHost.java index 1e37aba8..b88ae0f8 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithoutDescriptionCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithoutDescriptionCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithoutPrimaryKeyCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithoutPrimaryKeyCheckOnHost.java index b750a492..78c7798e 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithoutPrimaryKeyCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/TablesWithoutPrimaryKeyCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/UnusedIndexesCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/UnusedIndexesCheckOnHost.java index 104c2f82..6b027879 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/UnusedIndexesCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/host/UnusedIndexesCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/AbstractFilterByBloat.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/AbstractFilterByBloat.java index a3b2515a..415157bf 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/AbstractFilterByBloat.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/AbstractFilterByBloat.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/AbstractFilterByName.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/AbstractFilterByName.java index 5d4a54e3..518af36c 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/AbstractFilterByName.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/AbstractFilterByName.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/AbstractFilterBySize.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/AbstractFilterBySize.java index 77a6f5d5..af15b2ae 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/AbstractFilterBySize.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/AbstractFilterBySize.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterDuplicatedIndexesByNamePredicate.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterDuplicatedIndexesByNamePredicate.java index bbff060f..f1f80536 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterDuplicatedIndexesByNamePredicate.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterDuplicatedIndexesByNamePredicate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByBloatPredicate.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByBloatPredicate.java index 20a10d8a..8f76e7b0 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByBloatPredicate.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByBloatPredicate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByNamePredicate.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByNamePredicate.java index 9a1ebd9c..43fd4c3b 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByNamePredicate.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByNamePredicate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesBySizePredicate.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesBySizePredicate.java index a8a6f4c0..619ba498 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesBySizePredicate.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesBySizePredicate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByBloatPredicate.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByBloatPredicate.java index 6c22bbe6..7bf56f3c 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByBloatPredicate.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByBloatPredicate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByNamePredicate.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByNamePredicate.java index 4a4bfa2d..7b90cdac 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByNamePredicate.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByNamePredicate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterTablesBySizePredicate.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterTablesBySizePredicate.java index ba59a5b0..294b5585 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterTablesBySizePredicate.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/checks/predicates/FilterTablesBySizePredicate.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/AbstractHealthLogger.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/AbstractHealthLogger.java index 556c54df..f81062af 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/AbstractHealthLogger.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/AbstractHealthLogger.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/Exclusions.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/Exclusions.java index 5bb95615..fda9a6ff 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/Exclusions.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/Exclusions.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/ExclusionsBuilder.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/ExclusionsBuilder.java index 480f4958..616bd5bf 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/ExclusionsBuilder.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/ExclusionsBuilder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/HealthLogger.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/HealthLogger.java index 808fa7d1..b5b11b61 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/HealthLogger.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/HealthLogger.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/KeyValueFileHealthLogger.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/KeyValueFileHealthLogger.java index 1cecccdc..0fa96eee 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/KeyValueFileHealthLogger.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/KeyValueFileHealthLogger.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/LoggingKey.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/LoggingKey.java index 1022c913..20561dfd 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/LoggingKey.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/LoggingKey.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/SimpleLoggingKey.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/SimpleLoggingKey.java index a216ccd9..54a78667 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/SimpleLoggingKey.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/SimpleLoggingKey.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/StandardHealthLogger.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/StandardHealthLogger.java index 0ab2d97f..9c2aff77 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/StandardHealthLogger.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/health/logger/StandardHealthLogger.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DatabaseCheckOnCluster.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DatabaseCheckOnCluster.java index 5c33ec16..7a8e3d72 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DatabaseCheckOnCluster.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DatabaseCheckOnCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DatabaseCheckOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DatabaseCheckOnHost.java index 3e82dc83..03467a9d 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DatabaseCheckOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DatabaseCheckOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DatabaseChecks.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DatabaseChecks.java index 2b63364e..5a9bc699 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DatabaseChecks.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DatabaseChecks.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/Diagnostic.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/Diagnostic.java index 81638434..1007c484 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/Diagnostic.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/Diagnostic.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DiagnosticAware.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DiagnosticAware.java index 2eb5b054..7a0fc460 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DiagnosticAware.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/DiagnosticAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/QueryExecutor.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/QueryExecutor.java index 1cd5ff8d..59abe634 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/QueryExecutor.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/QueryExecutor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/RawTypeAware.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/RawTypeAware.java index b93c95de..d19c0ef4 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/RawTypeAware.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/RawTypeAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/ResultSetExtractor.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/ResultSetExtractor.java index a4674ad6..08af0426 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/ResultSetExtractor.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/maintenance/ResultSetExtractor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/management/DatabaseManagement.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/management/DatabaseManagement.java index 8dade73d..267f77a1 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/management/DatabaseManagement.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/management/DatabaseManagement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/management/DatabaseManagementImpl.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/management/DatabaseManagementImpl.java index 7f7502f9..e0facce5 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/common/management/DatabaseManagementImpl.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/common/management/DatabaseManagementImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/settings/ConfigurationAware.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/settings/ConfigurationAware.java index 1629c771..a197fdd5 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/settings/ConfigurationAware.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/settings/ConfigurationAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/settings/maintenance/ConfigurationMaintenanceOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/settings/maintenance/ConfigurationMaintenanceOnHost.java index 1b7a8c7d..55c68a25 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/settings/maintenance/ConfigurationMaintenanceOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/settings/maintenance/ConfigurationMaintenanceOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/settings/maintenance/ConfigurationMaintenanceOnHostImpl.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/settings/maintenance/ConfigurationMaintenanceOnHostImpl.java index f73842d9..89a0df96 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/settings/maintenance/ConfigurationMaintenanceOnHostImpl.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/settings/maintenance/ConfigurationMaintenanceOnHostImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/StatisticsAware.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/StatisticsAware.java index 957e691e..6ced62d2 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/StatisticsAware.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/StatisticsAware.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHost.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHost.java index 960235b1..5faa81f3 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHost.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHost.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHostImpl.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHostImpl.java index 9d0caba7..f6d17c8e 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHostImpl.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHostImpl.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsQueryExecutor.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsQueryExecutor.java index f8f20b2c..e932da6c 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsQueryExecutor.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsQueryExecutor.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/ClockHolder.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/ClockHolder.java index 4123f66c..1acf0a8a 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/ClockHolder.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/ClockHolder.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/CollectionUtils.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/CollectionUtils.java index afbd4260..e1049713 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/CollectionUtils.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/CollectionUtils.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/ColumnsInForeignKeyParser.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/ColumnsInForeignKeyParser.java index 59821357..583522ed 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/ColumnsInForeignKeyParser.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/ColumnsInForeignKeyParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/NamedParametersParser.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/NamedParametersParser.java index 86853c1e..b02ccf67 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/NamedParametersParser.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/NamedParametersParser.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/QueryExecutors.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/QueryExecutors.java index 81526db7..566f6cdd 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/QueryExecutors.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/QueryExecutors.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/SqlQueryReader.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/SqlQueryReader.java index 15c95323..dbe824a5 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/SqlQueryReader.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/utils/SqlQueryReader.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/java/io/github/mfvanek/pg/validation/AdditionalValidators.java b/pg-index-health/src/main/java/io/github/mfvanek/pg/validation/AdditionalValidators.java index 9fa2a535..d76cb380 100644 --- a/pg-index-health/src/main/java/io/github/mfvanek/pg/validation/AdditionalValidators.java +++ b/pg-index-health/src/main/java/io/github/mfvanek/pg/validation/AdditionalValidators.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/main/resources b/pg-index-health/src/main/resources index 8aeeb733..93e888ed 160000 --- a/pg-index-health/src/main/resources +++ b/pg-index-health/src/main/resources @@ -1 +1 @@ -Subproject commit 8aeeb733f946f7067e67459adaf4298f4209d2a9 +Subproject commit 93e888ed6e581c4b5f1ef3df9081d49e5890ca2e diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/AbstractCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/AbstractCheckOnClusterTest.java index 311c4804..d534a54d 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/AbstractCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/AbstractCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithJsonTypeCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithJsonTypeCheckOnClusterTest.java index f267460b..d52f775a 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithJsonTypeCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithJsonTypeCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithSerialTypesCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithSerialTypesCheckOnClusterTest.java index 504937f6..0d2a69fa 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithSerialTypesCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithSerialTypesCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithoutDescriptionCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithoutDescriptionCheckOnClusterTest.java index 39d3364a..1d4dbfa9 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithoutDescriptionCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ColumnsWithoutDescriptionCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/DuplicatedIndexesCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/DuplicatedIndexesCheckOnClusterTest.java index 125ee0ea..c1729392 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/DuplicatedIndexesCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/DuplicatedIndexesCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ForeignKeysNotCoveredWithIndexCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ForeignKeysNotCoveredWithIndexCheckOnClusterTest.java index b2803384..5a95bb52 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ForeignKeysNotCoveredWithIndexCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/ForeignKeysNotCoveredWithIndexCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/FunctionsWithoutDescriptionCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/FunctionsWithoutDescriptionCheckOnClusterTest.java index 775848f2..55c14b5e 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/FunctionsWithoutDescriptionCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/FunctionsWithoutDescriptionCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/IndexesWithBloatCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/IndexesWithBloatCheckOnClusterTest.java index d6b3316b..1eae33f1 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/IndexesWithBloatCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/IndexesWithBloatCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/IndexesWithNullValuesCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/IndexesWithNullValuesCheckOnClusterTest.java index 69c65f07..b5ba828b 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/IndexesWithNullValuesCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/IndexesWithNullValuesCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/IntersectedIndexesCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/IntersectedIndexesCheckOnClusterTest.java index 420c5e8f..42b61750 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/IntersectedIndexesCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/IntersectedIndexesCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/InvalidIndexesCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/InvalidIndexesCheckOnClusterTest.java index 004b8d90..4a9f8994 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/InvalidIndexesCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/InvalidIndexesCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithBloatCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithBloatCheckOnClusterTest.java index c33350be..43d4584e 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithBloatCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithBloatCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithMissingIndexesCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithMissingIndexesCheckOnClusterTest.java index 0f755899..c27f0949 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithMissingIndexesCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithMissingIndexesCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutDescriptionCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutDescriptionCheckOnClusterTest.java index b1639757..53a191c1 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutDescriptionCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutDescriptionCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutPrimaryKeyCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutPrimaryKeyCheckOnClusterTest.java index 875b7c80..05f9e206 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutPrimaryKeyCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/TablesWithoutPrimaryKeyCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/UnusedIndexesCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/UnusedIndexesCheckOnClusterTest.java index 80bf04ce..e2736ee7 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/UnusedIndexesCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/cluster/UnusedIndexesCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/extractors/ColumnExtractorTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/extractors/ColumnExtractorTest.java index c0a8b56e..a62993b6 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/extractors/ColumnExtractorTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/extractors/ColumnExtractorTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/extractors/ColumnWithSerialTypeExtractorTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/extractors/ColumnWithSerialTypeExtractorTest.java index 93f6ff9e..17ad49aa 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/extractors/ColumnWithSerialTypeExtractorTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/extractors/ColumnWithSerialTypeExtractorTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/extractors/TableExtractorTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/extractors/TableExtractorTest.java index 94fea9a5..74e6cbcb 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/extractors/TableExtractorTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/extractors/TableExtractorTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/AbstractCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/AbstractCheckOnHostTest.java index 9f703df9..de9a2d2e 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/AbstractCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/AbstractCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ColumnsWithJsonTypeCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ColumnsWithJsonTypeCheckOnHostTest.java index 4f574eb1..079683d9 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ColumnsWithJsonTypeCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ColumnsWithJsonTypeCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ColumnsWithSerialTypesCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ColumnsWithSerialTypesCheckOnHostTest.java index 8f5c7aea..0ad8719a 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ColumnsWithSerialTypesCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ColumnsWithSerialTypesCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ColumnsWithoutDescriptionCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ColumnsWithoutDescriptionCheckOnHostTest.java index 6aa17b24..33f89334 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ColumnsWithoutDescriptionCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ColumnsWithoutDescriptionCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/DuplicatedIndexesCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/DuplicatedIndexesCheckOnHostTest.java index eb4618a1..c05726bd 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/DuplicatedIndexesCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/DuplicatedIndexesCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ForeignKeysNotCoveredWithIndexCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ForeignKeysNotCoveredWithIndexCheckOnHostTest.java index 86a092b3..d3abfacb 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ForeignKeysNotCoveredWithIndexCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/ForeignKeysNotCoveredWithIndexCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/FunctionsWithoutDescriptionCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/FunctionsWithoutDescriptionCheckOnHostTest.java index 851c4d7e..b0d0c06b 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/FunctionsWithoutDescriptionCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/FunctionsWithoutDescriptionCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/IndexesWithBloatCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/IndexesWithBloatCheckOnHostTest.java index d2331977..f4e97d3a 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/IndexesWithBloatCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/IndexesWithBloatCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/IndexesWithNullValuesCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/IndexesWithNullValuesCheckOnHostTest.java index 3b140979..4b84e488 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/IndexesWithNullValuesCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/IndexesWithNullValuesCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/IntersectedIndexesCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/IntersectedIndexesCheckOnHostTest.java index 06ff6f8e..27ed5823 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/IntersectedIndexesCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/IntersectedIndexesCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/InvalidIndexesCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/InvalidIndexesCheckOnHostTest.java index 0ceea630..ca1ba6fc 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/InvalidIndexesCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/InvalidIndexesCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithBloatCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithBloatCheckOnHostTest.java index 463dd15c..f5b7d22e 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithBloatCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithBloatCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithMissingIndexesCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithMissingIndexesCheckOnHostTest.java index f77d18ff..b718c3fd 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithMissingIndexesCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithMissingIndexesCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithoutDescriptionCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithoutDescriptionCheckOnHostTest.java index 9905bb92..f66a206b 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithoutDescriptionCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithoutDescriptionCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithoutPrimaryKeyCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithoutPrimaryKeyCheckOnHostTest.java index 061d347f..7a468e9f 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithoutPrimaryKeyCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/TablesWithoutPrimaryKeyCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/UnusedIndexesCheckOnHostTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/UnusedIndexesCheckOnHostTest.java index fe207761..f0e1a557 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/UnusedIndexesCheckOnHostTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/host/UnusedIndexesCheckOnHostTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterDuplicatedIndexesByNamePredicateTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterDuplicatedIndexesByNamePredicateTest.java index 51169742..c0f5ad0a 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterDuplicatedIndexesByNamePredicateTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterDuplicatedIndexesByNamePredicateTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByBloatPredicateTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByBloatPredicateTest.java index 1e94f302..ecbb4499 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByBloatPredicateTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByBloatPredicateTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByNamePredicateTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByNamePredicateTest.java index 376a58b0..59d26b9c 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByNamePredicateTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesByNamePredicateTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesBySizePredicateTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesBySizePredicateTest.java index ffa37c44..44c0ee4d 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesBySizePredicateTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterIndexesBySizePredicateTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByBloatPredicateTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByBloatPredicateTest.java index 8cbc2d65..e36f5084 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByBloatPredicateTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByBloatPredicateTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByNamePredicateTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByNamePredicateTest.java index 56446f71..514326a4 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByNamePredicateTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterTablesByNamePredicateTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterTablesBySizePredicateTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterTablesBySizePredicateTest.java index d3c3e6aa..d162d5c2 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterTablesBySizePredicateTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/checks/predicates/FilterTablesBySizePredicateTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/ExclusionsBuilderTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/ExclusionsBuilderTest.java index 2d732985..de31e543 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/ExclusionsBuilderTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/ExclusionsBuilderTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/ExclusionsTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/ExclusionsTest.java index bdda6256..4bae400d 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/ExclusionsTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/ExclusionsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/HealthLoggerTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/HealthLoggerTest.java index 55d4d79c..883c9e20 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/HealthLoggerTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/HealthLoggerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/HealthLoggerTestBase.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/HealthLoggerTestBase.java index 2e0b51eb..c4cd6664 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/HealthLoggerTestBase.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/HealthLoggerTestBase.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/SimpleLoggingKeyTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/SimpleLoggingKeyTest.java index eab67db2..6ad7aa68 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/SimpleLoggingKeyTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/SimpleLoggingKeyTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/StandardHealthLoggerTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/StandardHealthLoggerTest.java index 19e6e0d0..e9a29bd8 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/StandardHealthLoggerTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/health/logger/StandardHealthLoggerTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/maintenance/DatabaseCheckOnClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/maintenance/DatabaseCheckOnClusterTest.java index 84f56024..1566d8ea 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/maintenance/DatabaseCheckOnClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/maintenance/DatabaseCheckOnClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/maintenance/DatabaseChecksTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/maintenance/DatabaseChecksTest.java index 6a4e116f..f1ca3ba0 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/maintenance/DatabaseChecksTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/maintenance/DatabaseChecksTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/maintenance/DiagnosticTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/maintenance/DiagnosticTest.java index 26204486..8bd17de3 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/maintenance/DiagnosticTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/maintenance/DiagnosticTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/management/DatabaseManagementImplTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/management/DatabaseManagementImplTest.java index 1ec766a3..47522011 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/management/DatabaseManagementImplTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/management/DatabaseManagementImplTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/management/DatabaseManagementImplUnitTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/management/DatabaseManagementImplUnitTest.java index 3b093b9f..c71d3c58 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/common/management/DatabaseManagementImplUnitTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/common/management/DatabaseManagementImplUnitTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/e2e/HighAvailabilityPgConnectionClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/e2e/HighAvailabilityPgConnectionClusterTest.java index 4f201552..24a0b7a8 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/e2e/HighAvailabilityPgConnectionClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/e2e/HighAvailabilityPgConnectionClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/e2e/PgConnectionAwareCluster.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/e2e/PgConnectionAwareCluster.java index 2848ff3b..b5608977 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/e2e/PgConnectionAwareCluster.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/e2e/PgConnectionAwareCluster.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/e2e/PrimaryHostDeterminerClusterTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/e2e/PrimaryHostDeterminerClusterTest.java index 1c3654d3..8f369631 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/e2e/PrimaryHostDeterminerClusterTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/e2e/PrimaryHostDeterminerClusterTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/settings/maintenance/ConfigurationMaintenanceOnHostImplTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/settings/maintenance/ConfigurationMaintenanceOnHostImplTest.java index 41e65ec1..df05c561 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/settings/maintenance/ConfigurationMaintenanceOnHostImplTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/settings/maintenance/ConfigurationMaintenanceOnHostImplTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHostImplTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHostImplTest.java index cc5d4bad..78da98f4 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHostImplTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHostImplTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHostImplUnitTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHostImplUnitTest.java index b011d27d..efad7422 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHostImplUnitTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/statistics/maintenance/StatisticsMaintenanceOnHostImplUnitTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/AbstractCheckOnHostAssert.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/AbstractCheckOnHostAssert.java index 704dac60..f62e5592 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/AbstractCheckOnHostAssert.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/AbstractCheckOnHostAssert.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/DatabaseAwareTestBase.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/DatabaseAwareTestBase.java index 7cab571d..3e592609 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/DatabaseAwareTestBase.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/DatabaseAwareTestBase.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/DatabaseConfigurer.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/DatabaseConfigurer.java index 20b1e313..541d439c 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/DatabaseConfigurer.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/DatabaseConfigurer.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/DatabasePopulator.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/DatabasePopulator.java index 5ce75388..46f59236 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/DatabasePopulator.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/DatabasePopulator.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/ExecuteUtils.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/ExecuteUtils.java index 63c38c57..92c75320 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/ExecuteUtils.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/ExecuteUtils.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/StatisticsAwareTestBase.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/StatisticsAwareTestBase.java index 84991b51..13c4c7d9 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/StatisticsAwareTestBase.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/StatisticsAwareTestBase.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AbstractDbStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AbstractDbStatement.java index 362127f9..93ea997b 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AbstractDbStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AbstractDbStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddBlankCommentOnColumnsStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddBlankCommentOnColumnsStatement.java index 61d8a5f8..dd7f7f50 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddBlankCommentOnColumnsStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddBlankCommentOnColumnsStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddBlankCommentOnFunctionsStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddBlankCommentOnFunctionsStatement.java index 1b8c4a0f..8d99e528 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddBlankCommentOnFunctionsStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddBlankCommentOnFunctionsStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddBlankCommentOnTablesStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddBlankCommentOnTablesStatement.java index 1f7e4ffa..f1f8d147 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddBlankCommentOnTablesStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddBlankCommentOnTablesStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnColumnsStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnColumnsStatement.java index b1abafb3..43252fdf 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnColumnsStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnColumnsStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnFunctionsStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnFunctionsStatement.java index 831be57e..1843e33c 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnFunctionsStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnFunctionsStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnProceduresStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnProceduresStatement.java index 8b5f81c6..0ffacdc8 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnProceduresStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnProceduresStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnTablesStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnTablesStatement.java index 83f07721..de7b23d7 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnTablesStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddCommentOnTablesStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddLinksBetweenAccountsAndClientsStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddLinksBetweenAccountsAndClientsStatement.java index 36dedf3b..2e23ec0c 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddLinksBetweenAccountsAndClientsStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/AddLinksBetweenAccountsAndClientsStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/ConvertColumnToJsonTypeStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/ConvertColumnToJsonTypeStatement.java index d6428e0f..2a0dcde3 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/ConvertColumnToJsonTypeStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/ConvertColumnToJsonTypeStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateAccountsTableStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateAccountsTableStatement.java index 0697a0ae..65190128 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateAccountsTableStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateAccountsTableStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateClientsTableStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateClientsTableStatement.java index 56f84857..506e97b4 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateClientsTableStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateClientsTableStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateCustomCollationStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateCustomCollationStatement.java index d07371cd..346c8747 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateCustomCollationStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateCustomCollationStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateDuplicatedCustomCollationIndexStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateDuplicatedCustomCollationIndexStatement.java index 495fd082..b02dd375 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateDuplicatedCustomCollationIndexStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateDuplicatedCustomCollationIndexStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateDuplicatedHashIndexStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateDuplicatedHashIndexStatement.java index bbc2912e..fdea1e41 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateDuplicatedHashIndexStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateDuplicatedHashIndexStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateDuplicatedIndexStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateDuplicatedIndexStatement.java index 7cc0e64f..68ab4f76 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateDuplicatedIndexStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateDuplicatedIndexStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateForeignKeyOnNullableColumnStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateForeignKeyOnNullableColumnStatement.java index c942d4c8..5d5dbf3d 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateForeignKeyOnNullableColumnStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateForeignKeyOnNullableColumnStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateFunctionsStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateFunctionsStatement.java index 7ed5e852..cbd20b85 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateFunctionsStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateFunctionsStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateIndexWithNullValues.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateIndexWithNullValues.java index 11dd2124..04f8cc01 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateIndexWithNullValues.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateIndexWithNullValues.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateIndexesWithDifferentOpclassStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateIndexesWithDifferentOpclassStatement.java index 4ef4bd63..d367fb70 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateIndexesWithDifferentOpclassStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateIndexesWithDifferentOpclassStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateMaterializedViewStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateMaterializedViewStatement.java index bd97c544..9397f336 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateMaterializedViewStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateMaterializedViewStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateNotSuitableIndexForForeignKeyStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateNotSuitableIndexForForeignKeyStatement.java index ccfc6d6d..67a1334b 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateNotSuitableIndexForForeignKeyStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateNotSuitableIndexForForeignKeyStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateProceduresStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateProceduresStatement.java index a2f448fb..1effff5a 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateProceduresStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateProceduresStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateSchemaStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateSchemaStatement.java index 07edde74..a0df6d00 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateSchemaStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateSchemaStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateSuitableIndexForForeignKeyStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateSuitableIndexForForeignKeyStatement.java index c448ce8e..e3a2b58b 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateSuitableIndexForForeignKeyStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateSuitableIndexForForeignKeyStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithCheckConstraintOnSerialPrimaryKey.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithCheckConstraintOnSerialPrimaryKey.java index 4e5386c9..10ec7bc4 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithCheckConstraintOnSerialPrimaryKey.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithCheckConstraintOnSerialPrimaryKey.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithColumnOfBigSerialTypeStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithColumnOfBigSerialTypeStatement.java index 13536574..167e693b 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithColumnOfBigSerialTypeStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithColumnOfBigSerialTypeStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithSerialPrimaryKeyReferencesToAnotherTable.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithSerialPrimaryKeyReferencesToAnotherTable.java index c2b06063..5e21c982 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithSerialPrimaryKeyReferencesToAnotherTable.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithSerialPrimaryKeyReferencesToAnotherTable.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithUniqueSerialColumn.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithUniqueSerialColumn.java index 9873808f..103a06df 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithUniqueSerialColumn.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithUniqueSerialColumn.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithoutPrimaryKeyStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithoutPrimaryKeyStatement.java index 14c7b37d..93082d32 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithoutPrimaryKeyStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/CreateTableWithoutPrimaryKeyStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/DbStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/DbStatement.java index 542bf379..a9226aef 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/DbStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/DbStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/DropColumnStatement.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/DropColumnStatement.java index b0713b54..73a6ebbe 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/DropColumnStatement.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/DropColumnStatement.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/InsertDataIntoTablesAction.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/InsertDataIntoTablesAction.java index 6ce7ed01..c9002c75 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/InsertDataIntoTablesAction.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/support/statements/InsertDataIntoTablesAction.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/ClockHolderTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/ClockHolderTest.java index 4a452fbd..ccf7e028 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/ClockHolderTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/ClockHolderTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/CollectionUtilsTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/CollectionUtilsTest.java index c328efec..18d3afca 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/CollectionUtilsTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/CollectionUtilsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/ColumnsInForeignKeyParserTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/ColumnsInForeignKeyParserTest.java index 1d176ee9..f9f038e0 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/ColumnsInForeignKeyParserTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/ColumnsInForeignKeyParserTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/NamedParametersParserTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/NamedParametersParserTest.java index 93954a82..96efc595 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/NamedParametersParserTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/NamedParametersParserTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/PostgresVersionTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/PostgresVersionTest.java index 1a97fcfd..2f643b75 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/PostgresVersionTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/PostgresVersionTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/QueryExecutorsTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/QueryExecutorsTest.java index a0a1366d..93dcbace 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/QueryExecutorsTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/QueryExecutorsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/SqlQueryReaderTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/SqlQueryReaderTest.java index 8aa457cf..3c9c8540 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/SqlQueryReaderTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/utils/SqlQueryReaderTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for diff --git a/pg-index-health/src/test/java/io/github/mfvanek/pg/validation/AdditionalValidatorsTest.java b/pg-index-health/src/test/java/io/github/mfvanek/pg/validation/AdditionalValidatorsTest.java index c5b8d6da..42bc293b 100644 --- a/pg-index-health/src/test/java/io/github/mfvanek/pg/validation/AdditionalValidatorsTest.java +++ b/pg-index-health/src/test/java/io/github/mfvanek/pg/validation/AdditionalValidatorsTest.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019-2023. Ivan Vakhrushev and others. + * Copyright (c) 2019-2024. Ivan Vakhrushev and others. * https://github.com/mfvanek/pg-index-health * * This file is a part of "pg-index-health" - a Java library for