Merge pull request #8192 from dataease/pr@dev-v2@fix_impala_page

fix: 修复Impala分页需先排序
This commit is contained in:
Junjun 2024-02-27 18:00:41 +08:00 committed by GitHub
commit a089b7f9a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -213,7 +213,7 @@ public class Utils {
}
public static boolean isNeedOrder(List<String> dsList) {
String[] list = {"sqlServer", "db2"};
String[] list = {"sqlServer", "db2", "impala"};
List<String> strings = Arrays.asList(list);
List<String> collect = strings.stream().filter(dsList::contains).collect(Collectors.toList());
return ObjectUtils.isNotEmpty(collect);