Replies: 1 comment
-
Can you give more details on what you are trying to do. Code snippet would me more helpful |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I want to create "placeholders" in an Ibis expression to show where a
group_by
,filter
,order_by
, orlimit
should appear in a query. However, the values in those methods are not known ahead of time.It's easy enough to populate the methods with valid columns, but there are cases when a
group_by
may not receive fields from a user. This poses an issue because thegroup_by
method cannot be left empty. A similar issue occurs withorder_by
. Withfilter
, I could dofilter(True)
for an easy work around and set a very large row max inlimit
.Is there an easy way to wrap these Ibis table methods to ignore them if no columns are passed to them?
Beta Was this translation helpful? Give feedback.
All reactions