You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It will run as expected (prints "hello\nworld") when using .withoutStrategies(SqlgTraversalFilterStepStrategy.class).
The part that fails is the cast to call setRequiresOneBulk(true). I'm not going to pretend like I understand what is going on here, just going to be a messenger on this one :)
The text was updated successfully, but these errors were encountered:
The fix is a bit of a hack in that TinkerPop's `ReducingBarrierStep`
creates new traversers.
Sqlg needs to replace all `ReducingBarrierStep`s with its own steps to
be in charge of the traverser creation.
This is an outstanding //TODO as it will add optimization to all
`group by` type queries.
The following sample fails with a CCE (
LP_O_OB_P_S_SE_SL_Traverser
toSqlgTraverser
):It will run as expected (prints "hello\nworld") when using
.withoutStrategies(SqlgTraversalFilterStepStrategy.class)
.The part that fails is the cast to call
setRequiresOneBulk(true)
. I'm not going to pretend like I understand what is going on here, just going to be a messenger on this one :)The text was updated successfully, but these errors were encountered: