Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v.0.11.0 #385

Merged
merged 1 commit into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ description = "pg-index-health build"

allprojects {
group = "io.github.mfvanek"
version = "0.10.4"
version = "0.11.0"

repositories {
mavenLocal()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* @author Blohny
* @see TableNameAware
* @since 0.10.4
* @since 0.11.0
*/
@Immutable
public class Constraint implements DbObject, TableNameAware {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* A mapping to PostgreSQL constraint types.
*
* @author Blohny
* @since 0.10.4
* @since 0.11.0
* @see <a href="https://www.postgresql.org/docs/current/catalog-pg-constraint.html">pg_constraint</a>
*/
public enum ConstraintType {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* Represents database index with information about size and columns.
*
* @author Ivan Vahrushev
* @since 0.10.4
* @since 0.11.0
*/
@Immutable
public class IndexWithColumns extends IndexWithSize {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* GIN-index should be used instead for such columns.
*
* @author Vadim Khizhin
* @since 0.10.4
* @since 0.11.0
*/
public class BtreeIndexesOnArrayColumnsCheckOnCluster extends AbstractCheckOnCluster<IndexWithColumns> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Check for indexes that contain boolean values on all hosts in the cluster.
*
* @author Ivan Vahrushev
* @since 0.10.4
* @since 0.11.0
*/
public class IndexesWithBooleanCheckOnCluster extends AbstractCheckOnCluster<IndexWithColumns> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Check for not valid constraint on all hosts in the cluster.
*
* @author Blohny
* @since 0.10.4
* @since 0.11.0
*/
public class NotValidConstraintsCheckOnCluster extends AbstractCheckOnCluster<Constraint> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* A mapper from raw data to {@link IndexWithColumns} model.
*
* @author Ivan Vahrushev
* @since 0.10.4
* @since 0.11.0
*/
public class IndexWithSingleColumnExtractor implements ResultSetExtractor<IndexWithColumns> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* GIN-index should be used instead for such columns.
*
* @author Vadim Khizhin
* @since 0.10.4
* @since 0.11.0
*/
public class BtreeIndexesOnArrayColumnsCheckOnHost extends AbstractCheckOnHost<IndexWithColumns> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Check for indexes that contain boolean values on a specific host.
*
* @author Ivan Vahrushev
* @since 0.10.4
* @since 0.11.0
*/
public class IndexesWithBooleanCheckOnHost extends AbstractCheckOnHost<IndexWithColumns> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* Check for not valid constraints on a specific host.
*
* @author Blohny
* @since 0.10.4
* @since 0.11.0
*/
public class NotValidConstraintsCheckOnHost extends AbstractCheckOnHost<Constraint> {

Expand Down
2 changes: 1 addition & 1 deletion pg-index-health/src/main/resources
Submodule resources updated 1 files
+3 −3 README.md