-
-
Notifications
You must be signed in to change notification settings - Fork 109
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
[Queries] Respect maxResults
parameter when fetching query results
#263
Open
ohaibbq
wants to merge
3
commits into
goccy:main
Choose a base branch
from
Recidiviz:dan/max-results
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -555,6 +555,8 @@ | |
const ( | ||
formatOptionsUseInt64TimestampParam = "formatOptions.useInt64Timestamp" | ||
deleteContentsParam = "deleteContents" | ||
maxResults = "maxResults" | ||
maxResultsDefaultValue = -1 | ||
) | ||
|
||
func isDeleteContents(r *http.Request) bool { | ||
|
@@ -581,6 +583,22 @@ | |
return b | ||
} | ||
|
||
func parseQueryValueAsInt64(r *http.Request, key string, defaultValue int64) int64 { | ||
queryValues := r.URL.Query() | ||
values, exists := queryValues[key] | ||
if !exists { | ||
return defaultValue | ||
} | ||
if len(values) != 1 { | ||
return defaultValue | ||
} | ||
parsed, err := strconv.ParseInt(values[0], 10, 64) | ||
if err != nil { | ||
return defaultValue | ||
} | ||
return parsed | ||
ohaibbq marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
func (h *datasetsDeleteHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { | ||
ctx := r.Context() | ||
server := serverFromContext(ctx) | ||
|
@@ -966,6 +984,7 @@ | |
server: server, | ||
project: project, | ||
job: job, | ||
maxResults: parseQueryValueAsInt64(r, maxResults, maxResultsDefaultValue), | ||
useInt64Timestamp: isFormatOptionsUseInt64Timestamp(r), | ||
}) | ||
if err != nil { | ||
|
@@ -980,6 +999,7 @@ | |
project *metadata.Project | ||
job *metadata.Job | ||
useInt64Timestamp bool | ||
maxResults int64 | ||
} | ||
|
||
func (h *jobsGetQueryResultsHandler) Handle(ctx context.Context, r *jobsGetQueryResultsRequest) (*internaltypes.GetQueryResultsResponse, error) { | ||
|
@@ -988,6 +1008,19 @@ | |
return nil, err | ||
} | ||
rows := internaltypes.Format(response.Schema, response.Rows, r.useInt64Timestamp) | ||
|
||
if r.maxResults == 0 { | ||
rows = nil | ||
} | ||
|
||
if r.maxResults < -1 { | ||
return nil, fmt.Errorf("invalid maxResults parameter; must be greater than or equal to [-1], got [%i]", r.maxResults) | ||
} | ||
|
||
if r.maxResults != maxResultsDefaultValue { | ||
rows = rows[:min(int64(len(rows)), r.maxResults)] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. -1 is the |
||
} | ||
|
||
return &internaltypes.GetQueryResultsResponse{ | ||
JobReference: &bigqueryv2.JobReference{ | ||
ProjectId: r.project.ID, | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
If we don't need to parse other int64 values, you can use a dedicated MaxResults function. e.g.)
parseMaxResultValue
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.
It seems likely that there may be other int64 values that we need to parse in the future, so it seems fine to leave as is
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.
Then I think it's ok to leave the function, just do the maxResults's validation somewhere else.