Looking at the release notes [1] it lists `DESCRIBE DATABASE` (FLINK-14879) and `DESCRIBE CATALOG` (FLINK-14690). When I try these in 1.19 RC2 the behaviour is as in 1.18.1, i.e. it is not supported:
``` [INFO] Execute statement succeed. Flink SQL> show catalogs; +-----------------+ | catalog name | +-----------------+ | c_new | | default_catalog | +-----------------+ 2 rows in set Flink SQL> DESCRIBE CATALOG c_new; [ERROR] Could not execute SQL statement. Reason: org.apache.calcite.sql.validate.SqlValidatorException: Column 'c_new' not found in any table Flink SQL> show databases; +------------------+ | database name | +------------------+ | default_database | +------------------+ 1 row in set Flink SQL> DESCRIBE DATABASE default_database; [ERROR] Could not execute SQL statement. Reason: org.apache.calcite.sql.validate.SqlValidatorException: Column 'default_database' not found in any table ``` Is this an error in the release notes, or my mistake in interpreting them? thanks, Robin. [1] https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522&version=12353282 On Thu, 7 Mar 2024 at 10:01, Lincoln Lee <lincoln.8...@gmail.com> wrote: > Hi everyone, > > Please review and vote on the release candidate #2 for the version 1.19.0, > as follows: > [ ] +1, Approve the release > [ ] -1, Do not approve the release (please provide specific comments) > > The complete staging area is available for your review, which includes: > > * JIRA release notes [1], and the pull request adding release note for > users [2] > * the official Apache source release and binary convenience releases to be > deployed to dist.apache.org [3], which are signed with the key with > fingerprint E57D30ABEE75CA06 [4], > * all artifacts to be deployed to the Maven Central Repository [5], > * source code tag "release-1.19.0-rc2" [6], > * website pull request listing the new release and adding announcement blog > post [7]. > > The vote will be open for at least 72 hours. It is adopted by majority > approval, with at least 3 PMC affirmative votes. > > [1] > > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12315522&version=12353282 > [2] https://github.com/apache/flink/pull/24394 > [3] https://dist.apache.org/repos/dist/dev/flink/flink-1.19.0-rc2/ > [4] https://dist.apache.org/repos/dist/release/flink/KEYS > [5] https://repository.apache.org/content/repositories/orgapacheflink-1709 > [6] https://github.com/apache/flink/releases/tag/release-1.19.0-rc2 > [7] https://github.com/apache/flink-web/pull/721 > > > Best, > Yun, Jing, Martijn and Lincoln >