Skip to content

Commit

Permalink
Recover Select to prevent unsupported operation (#634)
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerwins authored Aug 25, 2023
1 parent 5963a6b commit 2ac69bb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/api/converter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1084,6 +1084,9 @@ function fromOperations(pbOperations: Array<PbOperation>): Array<Operation> {
attributes,
fromTimeTicket(pbStyleOperation!.getExecutedAt())!,
);
} else if (pbOperation.hasSelect()) {
// TODO(hackerwins): Select is deprecated.
continue;
} else if (pbOperation.hasIncrease()) {
const pbIncreaseOperation = pbOperation.getIncrease();
operation = IncreaseOperation.create(
Expand Down

0 comments on commit 2ac69bb

Please sign in to comment.