-
Notifications
You must be signed in to change notification settings - Fork 19
Paging blobs #1208
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
base: develop
Are you sure you want to change the base?
Paging blobs #1208
Conversation
This needs IT that test Blob paging. |
It does, but it can get a little wonky because of the way the table is assigned to the field... or the field to the table. Here's an example:
But you seems to already be on the right track. in the above I'm doing it so JOOQ doesn't create a new unique name on every query, but same context of just knowing what a table is and manually wrapping it. Likely would've done that for more of Auth/User stuff if I was aware at the time I did it. (though the Auth queries were pretty simple.) |
…into feature/1195_paging_blobs
…ble to prevent jOOQ from assigning random names.
I've added what I think is the missing IT test. Something in my docker config has broken so I can't run and verify these changes locally and its going to be several weeks before I'm able to work on this again. If someone else wants to take over the PR, have at it. I think its ready. |
Does writing DSL queries with manually created table and column references even work? I don't think we've tried doing this anywhere else.