-
Notifications
You must be signed in to change notification settings - Fork 2
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
Extend Vars support. #88
Comments
@TobiasNx: Is this issue "ready" for you? (cf. #86 (comment)) |
Is I have not used variables which were provided in a morph yet so I can't judge about the function. Otherwise +1 |
Not really, no.
They are¹ made available to any expression that resolves variables. So hopefully all of them after this issue is fixed. ¹ Well, should be, anyway; I'm unable to locate the exact mechanism right now. |
Tried with: https://gitlab.com/oersi/oersi-etl/-/tree/FunctionalReview/data/experimental/varTest It does not seem to work:
|
Thanks, good catch! There can be other immutable maps for |
Yes, now it seems to work. Tested it with the new updated status of branch and: https://gitlab.com/oersi/oersi-etl/-/tree/FunctionalReview/data/experimental/varTest |
+1 |
Thanks! |
In order to allow all Fix expression parameters to include "compile-time" variables, I'd like to propose the following changes:
put_var("varName", "value")
: Define single variable (with variable substitution).put_vars("varName": "value", ...)
: Define multiple variables (without variable substitution¹).do
²/if
/elsif
/unless
: Resolve variable substitutions in parameters.¹ No support for variable substitution in options required yet.
² Currently there's no bind that accepts any parameters.
The text was updated successfully, but these errors were encountered: