I know that external table can be defined like this
CREATE EXTERNAL TABLE artists (
id      BIGINT,
name    STRING,
links   STRUCT<url:STRING, picture:STRING>)
STORED BY 'org.elasticsearch.hadoop.hive.EsStorageHandler'
TBLPROPERTIES('es.resource' = 'radio/artists', 'es.query' = '?q=me*');
But can I just define table without es.query parameter and later run arbitrary FTS searches?
Thanks in advance.