Skip to content

Commit

Permalink
fix:使用Example.buidler创建Example时使用orderBy报NullPointerException
Browse files Browse the repository at this point in the history
  • Loading branch information
Korov authored and abel533 committed Oct 16, 2022
1 parent 7c042b6 commit ac0d4ec
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/src/main/java/tk/mybatis/mapper/entity/Example.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ private Example(Builder builder) {
this.oredCriteria = builder.exampleCriterias;
this.forUpdate = builder.forUpdate;
this.tableName = builder.tableName;
this.ORDERBY = new OrderBy(this, propertyMap);

if (!StringUtil.isEmpty(builder.orderByClause.toString())) {
this.orderByClause = builder.orderByClause.toString();
Expand Down

0 comments on commit ac0d4ec

Please sign in to comment.