qidaye opened a new issue, #49409:
URL: https://github.com/apache/doris/issues/49409

   ### Search before asking
   
   - [x] I had searched in the 
[issues](https://github.com/apache/doris/issues?q=is%3Aissue) and found no 
similar issues.
   
   
   ### Version
   
   master
   
   ### What's Wrong?
   
   ```
   mysql> desc  test_v1 all;
   ERROR 1105 (HY000): errCode = 2, detailMessage = Unknown storage engine 
'ELASTICSEARCH'
   ```
   
   ### What You Expected?
   
   desc normally.
   
   ### How to Reproduce?
   
   ```
   // 1. create ES table
    CREATE EXTERNAL TABLE `test_v1` (
     `c_datetime` array<datetimev2(0)> NULL,
     `c_long` array<bigint> NULL,
     `c_unsigned_long` array<largeint> NULL,
     `c_text` array<text> NULL,
     `c_short` array<smallint> NULL,
     `c_ip` array<text> NULL,
     `test1` text NULL,
     `c_half_float` array<float> NULL,
     `test4` datev2 NULL,
     `test5` datetimev2(0) NULL,
     `test2` text NULL,
     `c_date` array<datev2> NULL,
     `test3` double NULL,
     `c_scaled_float` array<double> NULL,
     `c_float` array<float> NULL,
     `c_double` array<double> NULL,
     `c_keyword` array<text> NULL,
     `c_person` json NULL,
     `test6` datetimev2(0) NULL,
     `test7` datetimev2(0) NULL,
     `test8` datetimev2(0) NULL,
     `test9` bigint NULL,
     `c_byte` array<tinyint> NULL,
     `c_bool` array<boolean> NULL,
     `c_integer` array<int> NULL,
     `message` text NULL,
     `c_user` json NULL
   ) ENGINE=ELASTICSEARCH
   COMMENT 'ELASTICSEARCH'
   PROPERTIES (
   "hosts" = "http://127.0.0.1:39200";,
   "user" = "",
   "password" = "",
   "index" = "test1",
   "enable_docvalue_scan" = "true",
   "max_docvalue_fields" = "20",
   "enable_keyword_sniff" = "true",
   "nodes_discovery" = "false",
   "http_ssl_enabled" = "false",
   "like_push_down" = "true"
   );
   
   // 2. desc es_table all
   desc test_v1 all; 
   
   ### Anything Else?
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [x] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [x] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
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]

Reply via email to