Skip to content

Commit 9dfa4ef

Browse files
committed
refactor: 串行加载表结构
1 parent 6b12758 commit 9dfa4ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hsweb-easy-orm-rdb/src/main/java/org/hswebframework/ezorm/rdb/supports/commons/RDBTableMetadataParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public Mono<RDBTableMetadata> parseByNameReactive(String name) {
138138
.doOnNext(metaData::addIndex);
139139

140140
return Flux
141-
.merge(columns, comments, index)
141+
.concat(columns, comments, index)
142142
.then(Mono.just(metaData));
143143
})
144144
.contextWrite(logContext);

0 commit comments

Comments
 (0)