Uses of Class
org.apache.flink.table.gateway.api.utils.SqlGatewayException
Packages that use SqlGatewayException
-
Uses of SqlGatewayException in org.apache.flink.table.gateway.api
Methods in org.apache.flink.table.gateway.api that throw SqlGatewayExceptionModifier and TypeMethodDescriptionvoidSqlGatewayService.cancelOperation(SessionHandle sessionHandle, OperationHandle operationHandle) Cancel the operation when it is not in terminal status.voidSqlGatewayService.closeOperation(SessionHandle sessionHandle, OperationHandle operationHandle) Close the operation and release all used resource by the operation.voidSqlGatewayService.closeSession(SessionHandle sessionHandle) Close theSession.SqlGatewayService.completeStatement(SessionHandle sessionHandle, String statement, int position) Returns a list of completion hints for the given statement at the given position.voidSqlGatewayService.configureSession(SessionHandle sessionHandle, String statement, long executionTimeoutMs) Using the statement to initialize the Session.<ClusterID>
ClusterIDSqlGatewayService.deployScript(SessionHandle sessionHandle, URI scriptUri, String script, org.apache.flink.configuration.Configuration executionConfig) Deploy the script in application mode.SqlGatewayService.executeStatement(SessionHandle sessionHandle, String statement, long executionTimeoutMs, org.apache.flink.configuration.Configuration executionConfig) Execute the submitted statement.SqlGatewayService.fetchResults(SessionHandle sessionHandle, OperationHandle operationHandle, long token, int maxRows) Fetch the results from the operation.SqlGatewayService.fetchResults(SessionHandle sessionHandle, OperationHandle operationHandle, FetchOrientation orientation, int maxRows) Fetch the results from the operation.SqlGatewayService.getCurrentCatalog(SessionHandle sessionHandle) Return current catalog name.org.apache.flink.table.functions.FunctionDefinitionSqlGatewayService.getFunctionDefinition(SessionHandle sessionHandle, org.apache.flink.table.catalog.UnresolvedIdentifier functionIdentifier) Get the specific definition of the function.SqlGatewayService.getOperationInfo(SessionHandle sessionHandle, OperationHandle operationHandle) Get theOperationInfoof the operation.org.apache.flink.table.catalog.ResolvedSchemaSqlGatewayService.getOperationResultSchema(SessionHandle sessionHandle, OperationHandle operationHandle) Get the result schema for the specified Operation.SqlGatewayService.getSessionConfig(SessionHandle sessionHandle) Get the current configuration of theSession.SqlGatewayService.getSessionEndpointVersion(SessionHandle sessionHandle) Get endpoint version that is negotiated in the openSession.org.apache.flink.table.catalog.ResolvedCatalogBaseTable<?>SqlGatewayService.getTable(SessionHandle sessionHandle, org.apache.flink.table.catalog.ObjectIdentifier tableIdentifier) Return table of the given fully qualified name.SqlGatewayService.listCatalogs(SessionHandle sessionHandle) Return all available catalogs in the current session.SqlGatewayService.listDatabases(SessionHandle sessionHandle, String catalogName) Return all available schemas in the given catalog.SqlGatewayService.listSystemFunctions(SessionHandle sessionHandle) List all available system functions.SqlGatewayService.listTables(SessionHandle sessionHandle, String catalogName, String databaseName, Set<org.apache.flink.table.catalog.CatalogBaseTable.TableKind> tableKinds) Return all available tables/views in the given catalog and database.SqlGatewayService.listUserDefinedFunctions(SessionHandle sessionHandle, String catalogName, String databaseName) List all user defined functions.SqlGatewayService.openSession(SessionEnvironment environment) Open theSession.SqlGatewayService.submitOperation(SessionHandle sessionHandle, Callable<ResultSet> executor) Submit an operation and execute.