-
Notifications
You must be signed in to change notification settings - Fork 96
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
Have Table Endpoint Filter Using QueryPlanningConstraint #439
Conversation
c9b578c
to
04eff7e
Compare
2dcf411
to
3f660a3
Compare
04eff7e
to
1c72507
Compare
@Context UriInfo uriInfo, | ||
@Context final ContainerRequestContext containerRequestContext | ||
) { | ||
RequestLog.startTiming(this); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything should be under the try
block.
The constructor for TablesApiRequest
can throw BadApiRequestException
which would cause us to never close the timer. Related to #362
02517a8
to
c3ecb49
Compare
ac7b631
to
fc613e5
Compare
fc613e5
to
f800dd4
Compare
5479a66
to
b33c0db
Compare
a01ff04
to
d4d406e
Compare
c33f603
to
2466ea0
Compare
2466ea0
to
f78aad5
Compare
@@ -259,7 +261,9 @@ | |||
|
|||
UNABLE_TO_CREATE_DIR("Unable to create directory %s."), | |||
UNABLE_TO_DELETE_DIR("Unable to delete directory %s."), | |||
FAIL_TO_WIPTE_LUCENE_INDEX_DIR("Failed to wipe Lucene index at directory: %s") | |||
FAIL_TO_WIPTE_LUCENE_INDEX_DIR("Failed to wipe Lucene index at directory: %s"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
spelling error 'Wipe'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Though it would be nice @QubitPi if you opened another PR that updates the end user API docs so that people know how to perform constrained queries without having to dig through the code.
1ce2df0
to
0849705
Compare
0849705
to
53c6371
Compare
@archolewa Sure. Here is the issue, which I will address today - #560 |
The 3rd milestone implementation of #310 . This PR implements basics. There are the following issues that could bring improvements:
For @archolewa's request, API doc also needs to be updated