We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ProjectionIterationBehavior.UNFILTERED
As demonstrated with the following unit test:
import com.amazon.ion.system.IonSystemBuilder import org.junit.Test import org.partiql.lang.eval.EvaluationSession import org.partiql.lang.eval.ExprValueFactory import org.partiql.lang.eval.ProjectionIterationBehavior import kotlin.test.assertEquals class ScratchPad { @Test fun test() { val ion = IonSystemBuilder.standard().build() val exprFactory = ExprValueFactory.standard(ion) val pipeline = CompilerPipeline.build(exprFactory) { compileOptions { projectionIteration(ProjectionIterationBehavior.UNFILTERED) } } val q = pipeline.compile("select * from <<{'a': MISSING}>>") val r = q.eval(EvaluationSession.standard()) // assertion below fails assertEquals("<<{'a': MISSING}>>", r.toString()) } }
The text was updated successfully, but these errors were encountered:
Respect ProjectionIterationBehavior.UNFILTERED within star projection
c42f9b8
Fixes #246
Respect ProjectionIterationBehavior.UNFILTERED within star projection (…
c1ed67e
…#247) Fixes #246
Prepare release v0.2.1 (#250)
f629c6f
* Respect ProjectionIterationBehavior.UNFILTERED within star projection (#247) Fixes #246 * Prepare release 0.2.1 Co-authored-by: David Lurton <dlurton@users.noreply.github.com>
Successfully merging a pull request may close this issue.
As demonstrated with the following unit test:
The text was updated successfully, but these errors were encountered: