-
Notifications
You must be signed in to change notification settings - Fork 0
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
Ordering Filter #2
Open
ashleyjlive
wants to merge
14
commits into
feat-visibility-filter
Choose a base branch
from
feat-ordering-filter
base: feat-visibility-filter
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
Conversation
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
racing.proto: • Added optional string parameter `order_by` as per Google design spec[1]. races.go: • Changed `List` funct to accept ListRacesRequest param - this is required for accessing parameters outside of the filter. • Added function `applyOrdering` which appends ORDER BY statement. By default it orders by `advertised_start_time` but also allows for custom ordering. • Added function `toOrderBySql` which converts unvalidated external input for order by query and converts to a safe SQL format.
Correct out-of-date naming for RacesRepo interface List function.
• Update order by comment to describe usage.
• Added order by name test.
• Expanded order by test case to ensure that multi space, multi fied sorting is obeyed.
• Added line for order by parameter detailing its purpose.
• Fixed invalid testType of "db" for races_test.
• Fixed failing test cases due to compilation error with Init change. • Fixed database in use error due to test case access other test cases databases.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Description
Provide the ability for the consumer to specify a custom sort order in the list-races request or, by default, sort by the advertised start time.
Purpose
When listing events on a webpage, showing them in the order requested by the user or by default, time, would make the list easier to read.