Closed vetsin closed 7 months ago
Following up here -- i don't think it's actually a 'limit' issue. To investigate further.
Could not reproduce, even with the original code. No idea what this was...
Can reproduce again, need to determine if this is a to_pandas thing or not.
DEF0039228 -- you need a default sort
This should not happen, i believe it is reproduced as follows
You'll see something like
53192
as the len is reporting the actual, returned by the headers. We're literally just limiting on the client side how much we pull in. If you then did something like this...your df.shape would give you
53192
rows! How? it would just loop the 50 records you do have. Suggested solution? ensure everywhere that you actually only make results with 50? Or maybe we should report50
as the len in the first place too.