Skip to content

Commit

Permalink
[FLINK-23017][sql-client] HELP in sql-client still shows the removed …
Browse files Browse the repository at this point in the history
…SOURCE functionality (apache#16321)
  • Loading branch information
SteNicholas committed Jun 30, 2021
1 parent 96dba32 commit 27bda73
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,6 @@ private CliStrings() {
"SHOW FUNCTIONS",
"Shows all user-defined and built-in functions or only user-defined functions. Syntax: \"SHOW [USER] FUNCTIONS;\""))
.append(formatCommand("SHOW TABLES", "Shows all registered tables."))
.append(
formatCommand(
"SOURCE",
"Reads a SQL SELECT query from a file and executes it on the Flink cluster."))
.append(
formatCommand(
"USE CATALOG",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ SELECT Executes a SQL SELECT query on the Flink cluster.
SET Sets a session configuration property. Syntax: "SET '<key>'='<value>';". Use "SET;" for listing all properties.
SHOW FUNCTIONS Shows all user-defined and built-in functions or only user-defined functions. Syntax: "SHOW [USER] FUNCTIONS;"
SHOW TABLES Shows all registered tables.
SOURCE Reads a SQL SELECT query from a file and executes it on the Flink cluster.
USE CATALOG Sets the current catalog. The current database is set to the catalog's default one. Experimental! Syntax: "USE CATALOG <name>;"
USE Sets the current default database. Experimental! Syntax: "USE <name>;"
LOAD MODULE Load a module. Syntax: "LOAD MODULE <name> [WITH ('<key1>' = '<value1>' [, '<key2>' = '<value2>', ...])];"
Expand Down
1 change: 0 additions & 1 deletion flink-table/flink-sql-client/src/test/resources/sql/misc.q
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ SELECT Executes a SQL SELECT query on the Flink cluster.
SET Sets a session configuration property. Syntax: "SET '<key>'='<value>';". Use "SET;" for listing all properties.
SHOW FUNCTIONS Shows all user-defined and built-in functions or only user-defined functions. Syntax: "SHOW [USER] FUNCTIONS;"
SHOW TABLES Shows all registered tables.
SOURCE Reads a SQL SELECT query from a file and executes it on the Flink cluster.
USE CATALOG Sets the current catalog. The current database is set to the catalog's default one. Experimental! Syntax: "USE CATALOG <name>;"
USE Sets the current default database. Experimental! Syntax: "USE <name>;"
LOAD MODULE Load a module. Syntax: "LOAD MODULE <name> [WITH ('<key1>' = '<value1>' [, '<key2>' = '<value2>', ...])];"
Expand Down

0 comments on commit 27bda73

Please sign in to comment.