We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As part of the new data model migration (#39629), we need to add a function to fetch documentation for a given path_id.
The function signature will be:
GetDocumentation(ctx context.Context, pathID int)(*internal.Documentation, error)
The function will execute the query below:
SELECT goos goarch synopsis html FROM documentation WHERE path_id = $1
The text was updated successfully, but these errors were encountered:
Change https://golang.org/cl/250540 mentions this issue: internal/postgres: split GetDirectory into multiple functions
internal/postgres: split GetDirectory into multiple functions
Sorry, something went wrong.
130d038
GetDirectory is split into several functions. These functions are intended to be exported in future CLs. For golang/go#39629 For golang/go#41017 For golang/go#41018 Change-Id: I78edfc2ab47e9947d8a8a6400460413ce0e64180 Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/250540 Run-TryBot: Julie Qiu <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Jonathan Amsterdam <[email protected]>
No branches or pull requests
As part of the new data model migration (#39629), we need to add a function to fetch documentation for a given path_id.
The function signature will be:
The function will execute the query below:
The text was updated successfully, but these errors were encountered: