Description
When using local XGBoost model to make prediction, the claimed prediction table can not be created correctly.
Reproduction Steps
%%sqlflow
SELECT *
FROM datamap_test.iris_test
PREDICT datamap_test.iris_xgb_predict
WITH
pred.append_columns = [sepal_length, sepal_width, petal_length, petal_width],
pred.prob_column = prob,
pred.detail_column = detail,
pred.encoding_column = encoding
USING datamap_test.iris_xgb_model;
Expected Behavior
It should create table iris_xgb_predict in database datamap_test which the prediction should be stored into. However it created table datamap_test.datamap_test.
Screenshots

Environment (Please complete the following information):
Additional Notes