sollhui opened a new pull request, #38826:
URL: https://github.com/apache/doris/pull/38826
   pick (#38523)
   
   Create a job:
   ```
   CREATE ROUTINE LOAD testShow ON test_show_routine_load
   COLUMNS TERMINATED BY ","
   PROPERTIES
   (
   "max_batch_interval" = "5",
   "max_batch_rows" = "300000",
   "max_batch_size" = "209715200"
   )
   FROM KAFKA
   (
   "kafka_broker_list" = "127.0.0.1:19092",
   "kafka_topic" = "test_show_routine_load",
   "property.kafka_default_offsets" = "OFFSET_BEGINNING"
   );
   ```
   show routine load task:
   ```
   SHOW ROUTINE LOAD TASK WHERE JobName = "testShow";
   ```
   result:
   ```
   ERROR 1105 (HY000): errCode = 2, detailMessage = The job named testshowdoes 
not exists or job state is stopped or cancelled
   ```
   
   Do not  use `toLowerCase` method;
   
   
   
   


-- 
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: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to