Skip to content

Commit

Permalink
feat(ui): Added rank step to pypika translator
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <[email protected]>
  • Loading branch information
lukapeschke committed Jul 31, 2023
1 parent 788945a commit 59ed975
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

### Added
- NativeSQL translator: Added support for the rank step

## [0.105.1] - 2023-07-17

### Fixed
Expand Down
4 changes: 4 additions & 0 deletions ui/src/lib/translators/pypika.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ export class PypikaTranslator extends BaseTranslator {
return step;
}

rank(step: Readonly<S.RankStep>) {
return step;
}

rename(step: Readonly<S.RenameStep>) {
return step;
}
Expand Down

0 comments on commit 59ed975

Please sign in to comment.