MCPcopy Index your code
hub / github.com/sqlc-dev/sqlc / supportedPlatforms

Function supportedPlatforms

cmd/sqlc-test-setup/main.go:259–265  ·  view source on GitHub ↗

supportedPlatforms returns a comma-separated list of supported platforms.

()

Source from the content-addressed store, hash-verified

257
258// supportedPlatforms returns a comma-separated list of supported platforms.
259func supportedPlatforms() string {
260 platforms := make([]string, 0, len(pgBinaries))
261 for p := range pgBinaries {
262 platforms = append(platforms, p)
263 }
264 return strings.Join(platforms, ", ")
265}
266
267// downloadFile downloads a URL to a local file path.
268func downloadFile(filepath string, url string) error {

Callers 1

installPostgreSQLFunction · 0.85

Calls 1

JoinMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…