Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit810af2a

Browse files
committed
Merge branch 'dev' of github.com:lowcoder-org/lowcoder into fix/markdown-hide-textSize
2 parents119f701 +0763536 commit810af2a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

‎server/api-service/lowcoder-domain/src/main/java/org/lowcoder/domain/query/service/QueryExecutionServiceImpl.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
importreactor.core.publisher.Mono;
2121

2222
importjava.time.Duration;
23+
importjava.util.HashMap;
2324
importjava.util.List;
2425
importjava.util.Map;
2526
importjava.util.concurrent.TimeoutException;
@@ -81,7 +82,12 @@ private Mono<QueryExecutionResult> executeLocally(Datasource datasource, Map<Str
8182
privateMono<QueryExecutionResult>executeByNodeJs(Datasourcedatasource,Map<String,Object>queryConfig,Map<String,Object>requestParams,QueryVisitorContextqueryVisitorContext) {
8283
List<Map<String,Object>>context =requestParams.entrySet()
8384
.stream()
84-
.map(entry ->Map.of("key",entry.getKey(),"value",entry.getValue()))
85+
.map(entry -> {
86+
Map<String,Object>temp =newHashMap<>();
87+
temp.put("key",entry.getKey());
88+
temp.put("value",entry.getValue());// Allows null values
89+
returntemp;
90+
})
8591
.collect(Collectors.toList());
8692

8793
//forward cookies to js datasource

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp