diff options
| author | wangwei <[email protected]> | 2024-11-08 15:25:28 +0800 |
|---|---|---|
| committer | wangwei <[email protected]> | 2024-11-08 15:25:28 +0800 |
| commit | 70ed54cffddd115bd058624cd60fa1f03f81edf2 (patch) | |
| tree | 0553ffe1a1473487fd139c7133c1ac2d3158d19f /src | |
| parent | b487a7a928ab81f629af575b05a3f8a7075e302a (diff) | |
[Fix][dataset] 修正filed_list 变量定义,字段发现(批量结果获取)
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/java/com/mesalab/qgw/service/impl/QueryJobServiceImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/mesalab/qgw/service/impl/QueryJobServiceImpl.java b/src/main/java/com/mesalab/qgw/service/impl/QueryJobServiceImpl.java index e47bb2cd..be60c9e0 100644 --- a/src/main/java/com/mesalab/qgw/service/impl/QueryJobServiceImpl.java +++ b/src/main/java/com/mesalab/qgw/service/impl/QueryJobServiceImpl.java @@ -444,7 +444,7 @@ public class QueryJobServiceImpl implements QueryJobService, EnvironmentAware { if (queryCache == null) { continue; } - if (JobConfig.FIELD_DISCOVERY_DEPRECATED_V2410.equals(queryCache.getType())) { + if (JobConfig.FIELD_DISCOVERY.equals(queryCache.getType())) { queryCache = rebuildFieldDiscoveryQueryCache(queryCache); } baseResult = queryCache.getBaseResult(); |
