-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
timestamps are absent when using limit within include #4740
Comments
Sounds odd, can you show the SQL query being run? |
Sure Executing (default): SELECT "parent"."id", "parent"."created_at", "parent"."updated_at" FROM "parents" AS "parent" LIMIT 5;
Executing (default): SELECT "child".* FROM ((SELECT "id", "created_at", "updated_at", "parent_id" FROM "children" AS "child" WHERE "child"."parent_id" = 1 LIMIT 5)) AS "child"; Running second statement ( |
Odd, don't see any reason why it wouldn't work. Can you try logging |
|
Appears to be a bug with how |
Specifically i think we're missing a |
@mickhansen confirming that it's fixed. Thanks! |
I noticed that timestamps are not passed to the instance when using limit within include (version
3.12.2
, postgres).Example that reproduces the issue:
Anything I'm doing wrong here?
The text was updated successfully, but these errors were encountered: