-
-
Notifications
You must be signed in to change notification settings - Fork 37
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
Genbil - column index propagated into the transformation element #392
Comments
I published an alpha version a few hours ago at https://ci.appveyor.com/project/Seddryck/nbi/build/artifacts If you confirm it's OK, I'll merge to the develop line, create a beta, integrate it in next RC and release. |
Hey Cedric, The column index = 0 error has been fixed, however the new block of code has appeared (InternalTransformationInner tag) in the generated nbits file. Error message in nunit: Nbitt template (I have tried both the transform and the transformation tags): <equalTo>
<column index="0" role="key" type="numeric"/>
<column index="1" role="value" type="numeric">
<transform language="native" >
null-to-value
</transform>
</column>
<column index="2" role="value" type="numeric">
<transformation language="native" >
null-to-value
</transformation>
</column> Nbits result: <equalTo>
<column index="0" role="key" type="numeric" />
<column index="1" role="value" type="numeric">
<transform language="native">
null-to-value
</transform>
<InternalTransformationInner language="native">
null-to-value
</InternalTransformationInner>
</column>
<column index="2" role="value" type="numeric">
<transform language="native">
null-to-value
</transform>
<InternalTransformationInner language="native">
null-to-value
</InternalTransformationInner>
</column> |
Yep, now it looks ok! Thanks for the fix. |
…ing_serialization_(#392)' into develop
Thx for the feedback! Merged to the development branch and beta released at https://ci.appveyor.com/project/Seddryck/nbi/build/1.19.0-beta.42.build.433/artifacts or |
Hi All,
When I generate the test suite using the .nbitx template with transformation element used the generation process adds column index element into it as well (see below):
nbitx template:
generated nbits file (with column-index="0" added into the transformation element):
Could you fix it please?
Cheers.
The text was updated successfully, but these errors were encountered: