diff --git a/src/java.sql/share/classes/java/sql/DatabaseMetaData.java b/src/java.sql/share/classes/java/sql/DatabaseMetaData.java index 6f63c2989b8..f4cb8787b5f 100644 --- a/src/java.sql/share/classes/java/sql/DatabaseMetaData.java +++ b/src/java.sql/share/classes/java/sql/DatabaseMetaData.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 1996, 2022, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1996, 2024, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -1215,7 +1215,7 @@ public interface DatabaseMetaData extends Wrapper { * Only procedure descriptions matching the schema and * procedure name criteria are returned. They are ordered by * {@code PROCEDURE_CAT}, {@code PROCEDURE_SCHEM}, - * {@code PROCEDURE_NAME} and {@code SPECIFIC_ NAME}. + * {@code PROCEDURE_NAME} and {@code SPECIFIC_NAME}. * *

Each procedure description has the following columns: *

    @@ -3289,7 +3289,7 @@ public interface DatabaseMetaData extends Wrapper { * function name criteria are returned. They are ordered by * {@code FUNCTION_CAT}, {@code FUNCTION_SCHEM}, * {@code FUNCTION_NAME} and - * {@code SPECIFIC_ NAME}. + * {@code SPECIFIC_NAME}. * *

    Each function description has the following columns: *

      @@ -3339,7 +3339,7 @@ public interface DatabaseMetaData extends Wrapper { * parameter name criteria are returned. They are ordered by * {@code FUNCTION_CAT}, {@code FUNCTION_SCHEM}, * {@code FUNCTION_NAME} and - * {@code SPECIFIC_ NAME}. Within this, the return value, + * {@code SPECIFIC_NAME}. Within this, the return value, * if any, is first. Next are the parameter descriptions in call * order. The column descriptions follow in column number order. * @@ -3358,7 +3358,7 @@ public interface DatabaseMetaData extends Wrapper { *
    1. functionColumnIn - IN parameter *
    2. functionColumnInOut - INOUT parameter *
    3. functionColumnOut - OUT parameter - *
    4. functionColumnReturn - function return value + *
    5. functionReturn - function return value *
    6. functionColumnResult - Indicates that the parameter or column * is a column in the {@code ResultSet} *