EmmyMiao87 commented on a change in pull request #6110:
URL: https://github.com/apache/incubator-doris/pull/6110#discussion_r661947148
##########
File path: fe/fe-core/src/main/java/org/apache/doris/qe/ShowExecutor.java
##########
@@ -1829,6 +1832,58 @@ private void handleShowQueryProfile() throws
AnalysisException {
resultSet = new ShowResultSet(showStmt.getMetaData(), rows);
}
+ private void handleShowCreateRoutineLoad() throws AnalysisException {
+ ShowCreateRoutineLoadStmt showCreateRoutineLoadStmt =
(ShowCreateRoutineLoadStmt) stmt;
+ List<List<String>> rows = Lists.newArrayList();
+ String dbName = showCreateRoutineLoadStmt.getDb();
+ String labelName = showCreateRoutineLoadStmt.getLabel();
+ // if include history return all create load
+ if (showCreateRoutineLoadStmt.isIncludeHistory()) {
+ List<RoutineLoadJob> routineLoadJobList = new ArrayList<>();
+ try {
+ routineLoadJobList =
Catalog.getCurrentCatalog().getRoutineLoadManager().getJob(dbName, labelName,
true);
+ } catch (MetaNotFoundException e) {
+ LOG.warn(new LogBuilder(LogKey.ROUTINE_LOAD_JOB, labelName)
+ .add("error_msg", "Routine load cannot be found by
this name")
+ .build(), e);
+ }
+ if (routineLoadJobList == null) {
+ resultSet = new
ShowResultSet(showCreateRoutineLoadStmt.getMetaData(), rows);
+ return;
+ }
+ for (RoutineLoadJob job : routineLoadJobList) {
+ String tableName = "";
+ try {
+ tableName = job.getTableName();
+ } catch (MetaNotFoundException e) {
+ LOG.warn(new LogBuilder(LogKey.ROUTINE_LOAD_JOB,
job.getId())
+ .add("error_msg", "The table name for this routine
load does not exist")
+ .build(), e);
+ }
+ if
(!Catalog.getCurrentCatalog().getAuth().checkTblPriv(ConnectContext.get(),
+ dbName,
+ tableName,
+ PrivPredicate.LOAD)) {
+ resultSet = new
ShowResultSet(showCreateRoutineLoadStmt.getMetaData(), rows);
Review comment:
continue not return
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]