Closed KevinKelly25 closed 6 years ago
Changes look good and follow the recommend implementation. I only noticed some minor comment issues:
L32: quieries -> queries
L43: Adding a separator (----------------...
) here might not be necessary since it is not inside of the function and thus is already visually separated through indentation.
Thanks @KevinKelly25. Just one minor improvement: change parameter name query
to queryHead
because its value is only the beginning of a query, rather than the entire query.
(I have yet to test the changes.)
Thank you for the suggestion, it makes a lot more sense this way. I updated the variable name.
@afig Thank you for the the suggestions. I think you and @smurthys posted around the same time and I missed your comment somehow. I apologize for that. I fixed the issues you mentioned.
Thank you for the reviews
This PR adds a temporary function that when given a
DROP OWNED BY
query it will dynamically execute the query with an attachedCURRENT_USER
. All uses ofDROP OWNED BY CURRENT_USER
have been replaced with this temporary function with the replaced query as the parameter. This also maintains the purposefully odd case ofDrOP oWNeD BY
on Ln120.Fixes #269