Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to convert "<>" to "!=" #18

Merged
merged 3 commits into from
Oct 11, 2023
Merged

Conversation

ppputtyo
Copy link
Contributor

@ppputtyo ppputtyo commented Oct 11, 2023

  1. 「等しくない」を表す比較演算子<>!=に変換するオプションを追加(オプション名は"unify_not_equal")
    before:

    SELECT
        *
    FROM
        STUDENTS
    WHERE
        STUDENT_ID	<>	2

    result:

    SELECT
        *
    FROM
        STUDENTS
    WHERE
        STUDENT_ID	!=	2
  2. ドキュメントに追加したオプションを記載

Close #17

@ppputtyo ppputtyo requested a review from tanzaku October 11, 2023 03:17
@ppputtyo ppputtyo force-pushed the dev_kawabuchi_unify_not_eq branch from c336930 to 3e8e640 Compare October 11, 2023 04:26
@tanzaku
Copy link
Collaborator

tanzaku commented Oct 11, 2023

LGTM 👍

@tanzaku tanzaku merged commit 29740bd into main Oct 11, 2023
8 checks passed
@tanzaku tanzaku deleted the dev_kawabuchi_unify_not_eq branch October 11, 2023 05:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add option to convert "<>" to "!="
2 participants