Skip to content

Commit

Permalink
feat(ui): Disable join and append steps in pypika translator
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <luka.peschke@toucantoco.com>
  • Loading branch information
lukapeschke committed Sep 8, 2023
1 parent d7f1a9f commit 927d92d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 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

### Removed
- NativeSQL translator: dropped support for the join and append steps

## [0.108.0] - 2023-09-07

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

append(step: Readonly<S.AppendStep>) {
return step;
}

comparetext(step: Readonly<S.CompareTextStep>) {
return step;
}
Expand Down Expand Up @@ -86,10 +82,6 @@ export class PypikaTranslator extends BaseTranslator {
return step;
}

join(step: Readonly<S.JoinStep>) {
return step;
}

lowercase(step: Readonly<S.ToLowerStep>) {
return step;
}
Expand Down

0 comments on commit 927d92d

Please sign in to comment.