Replies: 1 comment 1 reply
-
This looks like a bug to me. The |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have this code
both the method withSubscriptions(SelectObjectBuilder) and withWaitingConfirmation(SelectObjectBuilder) take an argument of type SelectObjectBuilder, which I am using to add fields to the select clause. Both methods call withSubquery on it and after building the query, call end() on the SubqueryBuilder wich returns the original SelectObjectBuilder.
The problem is that everything works if I only use one of them (that is, if in the method fillSelections I comment the call to withSubscriptions or that to withWaitingConfirmation), but when I decomment both of them I get "A builder was not ended properly".
I thought that calling SubqueryBuilder.end() would bring me back to SelectObjectBuilder on which I could call again withSubquery() to build another subquery, then calling SubqueryBuilder.end() again would bring me back again to SelectObjectBuilder.
There is someting I misunderstood?
May I should use withSubqueries() to start multiple subQueries?
thanks for your help
Beta Was this translation helpful? Give feedback.
All reactions