-
Notifications
You must be signed in to change notification settings - Fork 34
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
Fillnull command introduced #723
Conversation
e26d0c3
to
8a14ecd
Compare
Usage examples:
|
I pushed the draft version of the
|
c47c334
to
c611f1f
Compare
@lukasz-soszynski-eliatra |
fillnull syntax proposal
New syntax definition in ANTLRfillnullCommand
: FILLNULL (fillNullWithTheSameValue
| fillNullWithFieldVariousValues)
;
fillNullWithTheSameValue
: WITH nullReplacement IN nullableField (COMMA nullableField)*
;
fillNullWithFieldVariousValues
: USING nullableField EQUAL nullReplacement (COMMA nullableField EQUAL nullReplacement)*
;
nullableField
: fieldExpression
;
nullReplacement
: expression
;
|
@lukasz-soszynski-eliatra this looks great ! |
@LantaoJin can you plz review the suggested syntax and add your comments ? |
1e711df
to
6ade195
Compare
Conflicts resolved. |
@lukasz-soszynski-eliatra can u plz resolve latest conflicts ? |
Signed-off-by: Lukasz Soszynski <lukasz.soszynski@eliatra.com>
…for the review. Signed-off-by: Lukasz Soszynski <lukasz.soszynski@eliatra.com>
bb244d3
to
8151931
Compare
The conflicts have been resolved. Furthermore, the syntax of the rename command is correct. Could you please clarify my doubt about the
|
|
Signed-off-by: Lukasz Soszynski <lukasz.soszynski@eliatra.com>
@YANG-DB The new syntax has been introduced, and PR is ready for review. |
@lukasz-soszynski-eliatra great job - Thanks !! |
Thank you. |
Description
Implementation of the
fillnull
commandIssues Resolved
#670
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.