-
Notifications
You must be signed in to change notification settings - Fork 6
Closed
Labels
bugSomething isn't workingSomething isn't working
Milestone
Description
The copy() method of class Query omits join_specs:
>>> query = Query(client, "Rule", order=['grouping', 'what', 'id'],
... join_specs={"grouping": "LEFT OUTER JOIN"})
>>> len(client.search(query))
104
>>> query.join_specs
{'grouping': 'LEFT OUTER JOIN'}
>>> copy_query = query.copy()
>>> len(client.search(copy_query))
44
>>> copy_query.join_specs
{}
>>> copy_query.setJoinSpecs({"grouping": "LEFT OUTER JOIN"})
>>> len(client.search(copy_query))
104Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working