Skip to content

Commit

Permalink
Sync With Master Branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Yash-cor committed Dec 31, 2024
1 parent 7a9cd89 commit ff11f5e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@
1. Pipeline: Support page query for inventory dumper and data consistency streaming query
1. Pipeline: Use case-insensitive identifiers to enhance the table metadata loader
1. Pipeline: Support primary key columns ordering for standard pipeline table metadata loader
1. Sharding: Optimize sharding table index name rewriting rules and remove unnecessary suffix rewriting - [#31171](https://github.com/apache/shardingsphere/issues/31171)

### Bug Fixes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,16 @@
@Setter
public final class MySQLUpdateStatement extends UpdateStatement implements MySQLStatement {

private WithSegment withSegment;

private OrderBySegment orderBy;

private LimitSegment limit;

private WithSegment withSegment;
@Override
public Optional<WithSegment> getWithSegment() {
return Optional.ofNullable(withSegment);
}

@Override
public Optional<OrderBySegment> getOrderBy() {
Expand All @@ -47,9 +52,4 @@ public Optional<OrderBySegment> getOrderBy() {
public Optional<LimitSegment> getLimit() {
return Optional.ofNullable(limit);
}

@Override
public Optional<WithSegment> getWithSegment() {
return Optional.ofNullable(withSegment);
}
}

0 comments on commit ff11f5e

Please sign in to comment.