CodeSampleX

샘플

github.com/jackc/pgx/v5 v5.11.0: NamedArgs

검증된 샘플 — golang github.com/jackc/pgx/v5 v5.11.0: NamedArgs. go 1.26 · linux debian/x64 · docker에서 contract를 실행해 통과했습니다: pgx.NamedArgs satisfies…

sha256:2aca39f69c119b881a152f5b96b5c2e7903eb2ca5348c19f2b14193ef5e263e4

이 네트워크가 제공하는 것은 하나입니다. 빌드되는 샘플. 샌드박스에서 돌리고 서명된 영수증을 보관합니다. 등급을 매기지 않고 무엇도 보증하지 않습니다 — 같은 코드가 당신 환경에서 빌드되는지는 측정한 적이 없습니다. 통과한 계약 영수증을 낸 서로 다른 서명 키의 수입니다. 하나면 작성자 혼자이고, 둘 이상이면 다른 사람도 빌드했다는 뜻입니다. 키는 스스로 만드는 것이고 뒤에 등록된 신원이 없으므로, 세는 것은 사람이 아니라 키입니다. MIT-0

실행 증거

선언된 환경과 서명된 실행을 분리해 두었습니다. 이 샘플이 무엇을 어디서 실행했는지 그대로 볼 수 있습니다.

증거 기준
서명된 컨트랙트 통과
검증 영수증
1
빌드한 서명 키
1
선언된 환경 go 1.26 linux 24 · ubuntu · glibc 2.39 x64 go 1.26 go go 1

검증 실행 환경

환경 컨트랙트 단계 실행일
go 1.26 · linux debian/x64 · docker ed25519:d91480838ac982c9 PASS compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS
CONTAINER_RUN · golang@1golang:1.26@sha256:e30143be198a…
2026-09-08

케이스

HOW
목표
verify github.com/jackc/pgx/v5.NamedArgs in pkg:golang/github.com/jackc/pgx/v5@v5.11.0
패키지
심벌
  • github.com/jackc/pgx/v5.NamedArgs
환경
go 1.26.6
생성일
2026-09-08T18:20:45Z

컨트랙트

  1. pgx.NamedArgs satisfies pgx.QueryRewriter interface
  2. NamedArgs.RewriteQuery replaces named @ placeholders with ordinal $ placeholders and returns positional arguments
  3. NamedArgs.RewriteQuery binds repeated occurrences of the same named placeholder to a single ordinal argument
  4. NamedArgs.RewriteQuery preserves @ symbols within string literals, quoted identifiers, and SQL comments
  5. NamedArgs.RewriteQuery permits unreferenced extra keys in the arguments map
  6. StrictNamedArgs.RewriteQuery returns an error when SQL query references missing named parameters
  7. StrictNamedArgs.RewriteQuery returns an error when arguments map contains unused extra parameters
  8. StructArgs and StrictStructArgs map exported struct fields and db tags into QueryRewriter

파일

  • PROMPT.md
  • csx.json
  • go.mod
  • go.sum
  • sample.go
  • spec.json
  • test/contract.go

소스 아티팩트 내려받기 (tar.gz)

소스

PROMPT.md
Clean-room public code sample — generation instructions

Write a brand-new, minimal, self-contained code sample in this clean-room directory.
Do not copy, paraphrase, or reference any existing project source. Work only from this spec.

A csx.json manifest scaffold already exists. Do not recreate it from memory. Preserve its case.goal, packages and symbols; fill its empty case.contract with exact assertions and correct its environment, commands and verifierAdapter for the files you generate.

Goal: verify github.com/jackc/pgx/v5.NamedArgs in pkg:golang/github.com/jackc/pgx/v5@v5.11.0
Kind: HOW

Use EXACTLY these public packages and versions:
  - pkg:golang/github.com/jackc/pgx/v5@v5.11.0
Demonstrate these symbols/APIs:
  - github.com/jackc/pgx/v5.NamedArgs

Rules:
  - One focused purpose; the smallest project that proves the goal.
  - Include a contract test (test/contract.*) that runs OFFLINE and exits 0 exactly when the goal behavior works.
  - Pin every dependency with a lockfile so resolution is reproducible.
  - No secrets, credentials, or tokens. No real URLs (only example.com or localhost). No absolute paths.
  - No personal names, emails, company names, or project identifiers of any kind.
  - No binaries and no generated output (node_modules, dist, target, venv, .git, .env).
  - Keep it under 200 files and 256KB packed.
csx.json
{"case":{"caseId":"case:sha256:60053f905631551997a79f5cdbd5ebe03f67dc9b19f1e5d8eb542437d5206f9e","contract":["pgx.NamedArgs satisfies pgx.QueryRewriter interface","NamedArgs.RewriteQuery replaces named @ placeholders with ordinal $ placeholders and returns positional arguments","NamedArgs.RewriteQuery binds repeated occurrences of the same named placeholder to a single ordinal argument","NamedArgs.RewriteQuery preserves @ symbols within string literals, quoted identifiers, and SQL comments","NamedArgs.RewriteQuery permits unreferenced extra keys in the arguments map","StrictNamedArgs.RewriteQuery returns an error when SQL query references missing named parameters","StrictNamedArgs.RewriteQuery returns an error when arguments map contains unused extra parameters","StructArgs and StrictStructArgs map exported struct fields and db tags into QueryRewriter"],"goal":"verify github.com/jackc/pgx/v5.NamedArgs in pkg:golang/github.com/jackc/pgx/v5@v5.11.0","kind":"HOW","packages":["pkg:golang/github.com/jackc/pgx/v5@v5.11.0"],"schemaVersion":1,"symbols":["github.com/jackc/pgx/v5.NamedArgs"]},"contractCommand":["go","run","./test"],"environment":{"arch":"x64","distro":"ubuntu","ecosystem":"golang","language":"go","libc":"glibc","libcVersion":"2.39","os":"linux","osVersionBucket":"24","packageManager":"go","packageManagerVersion":"1.26.6","runtime":"go","runtimeVersion":"1.26.6","schemaVersion":1},"license":"MIT-0","packages":["pkg:golang/github.com/jackc/pgx/v5@v5.11.0"],"schemaVersion":1,"subject":"pkg:golang/github.com/jackc/pgx/v5@v5.11.0","symbols":["github.com/jackc/pgx/v5.NamedArgs"],"verifierAdapter":"golang@1"}
go.mod
module sample

go 1.26.6

require github.com/jackc/pgx/v5 v5.11.0

require (
	github.com/jackc/pgpassfile v1.0.0 // indirect
	github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
	golang.org/x/text v0.29.0 // indirect
)
go.sum
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsIM=
github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg=
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 h1:iCEnooe7UlwOQYpKFhBabPMi4aNAfoODPEFNiAnClxo=
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM=
github.com/jackc/pgx/v5 v5.11.0 h1:IzBBtyK9AHqf98cctWFifYSci2hgQR/cd56wB4p+ogg=
github.com/jackc/pgx/v5 v5.11.0/go.mod h1:mal1tBGAFfLHvZzaYh77YS/eC6IX9OWbRV1QIIM0Jn4=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
golang.org/x/text v0.29.0 h1:1neNs90w9YzJ9BocxfsQNHKuAT4pkghyXc4nhZ6sJvk=
golang.org/x/text v0.29.0/go.mod h1:7MhJOA9CD2qZyOKYazxdYMF85OwPdEr9jTtBpO7ydH4=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
sample.go
package sample

import (
	"context"
	"fmt"

	"github.com/jackc/pgx/v5"
)

// UserQueryCriteria represents query filter criteria convertible to pgx.QueryRewriter via StructArgs.
type UserQueryCriteria struct {
	TenantID int64  `db:"tenant_id"`
	Email    string `db:"email"`
	Status   string `db:"status"`
	Internal string `db:"-"`
}

// RewriteNamedQuery rewrites a SQL query containing named @placeholders using pgx.NamedArgs into $ordinals.
func RewriteNamedQuery(ctx context.Context, sql string, args pgx.NamedArgs) (string, []any, error) {
	if args == nil {
		return "", nil, fmt.Errorf("args cannot be nil")
	}
	return args.RewriteQuery(ctx, nil, sql, nil)
}

// RewriteStrictNamedQuery rewrites SQL query using pgx.StrictNamedArgs, validating all parameters.
func RewriteStrictNamedQuery(ctx context.Context, sql string, args pgx.StrictNamedArgs) (string, []any, error) {
	if args == nil {
		return "", nil, fmt.Errorf("args cannot be nil")
	}
	return args.RewriteQuery(ctx, nil, sql, nil)
}

// RewriteStructQuery converts a struct into a QueryRewriter using pgx.StructArgs and rewrites the query.
func RewriteStructQuery(ctx context.Context, sql string, criteria any) (string, []any, error) {
	rewriter := pgx.StructArgs(criteria)
	return rewriter.RewriteQuery(ctx, nil, sql, nil)
}

// RewriteStrictStructQuery converts a struct into a QueryRewriter using pgx.StrictStructArgs and rewrites the query.
func RewriteStrictStructQuery(ctx context.Context, sql string, criteria any) (string, []any, error) {
	rewriter := pgx.StrictStructArgs(criteria)
	return rewriter.RewriteQuery(ctx, nil, sql, nil)
}
spec.json
{
  "schemaVersion": 1,
  "goal": "verify github.com/jackc/pgx/v5.NamedArgs in pkg:golang/github.com/jackc/pgx/v5@v5.11.0",
  "kind": "HOW",
  "packages": [
    "pkg:golang/github.com/jackc/pgx/v5@v5.11.0"
  ],
  "symbols": [
    "github.com/jackc/pgx/v5.NamedArgs"
  ]
}
test/contract.go
package main

import (
	"context"
	"fmt"
	"os"
	"reflect"

	"github.com/jackc/pgx/v5"
	"sample"
)

func main() {
	ctx := context.Background()

	// 1. pgx.NamedArgs satisfies pgx.QueryRewriter interface
	var rewriter pgx.QueryRewriter = pgx.NamedArgs{"test": 1}
	if rewriter == nil {
		fmt.Fprintf(os.Stderr, "FAIL [1]: pgx.NamedArgs does not implement QueryRewriter\n")
		os.Exit(1)
	}

	// 2. NamedArgs.RewriteQuery replaces named @ placeholders with ordinal $ placeholders and returns positional arguments
	sql := "SELECT id, email, status FROM users WHERE tenant_id = @tenant_id AND status = @status"
	args := pgx.NamedArgs{
		"tenant_id": int64(1001),
		"status":    "active",
	}
	newSQL, newArgs, err := sample.RewriteNamedQuery(ctx, sql, args)
	if err != nil {
		fmt.Fprintf(os.Stderr, "FAIL [2]: RewriteNamedQuery error: %v\n", err)
		os.Exit(1)
	}
	expectedSQL := "SELECT id, email, status FROM users WHERE tenant_id = $1 AND status = $2"
	if newSQL != expectedSQL {
		fmt.Fprintf(os.Stderr, "FAIL [2]: SQL mismatch: expected %q, got %q\n", expectedSQL, newSQL)
		os.Exit(1)
	}
	if len(newArgs) != 2 || newArgs[0] != int64(1001) || newArgs[1] != "active" {
		fmt.Fprintf(os.Stderr, "FAIL [2]: args mismatch: got %v\n", newArgs)
		os.Exit(1)
	}

	// 3. NamedArgs.RewriteQuery binds repeated occurrences of the same named placeholder to a single ordinal argument
	repeatSQL := "SELECT id FROM accounts WHERE user_id = @user_id OR owner_id = @user_id"
	repeatArgs := pgx.NamedArgs{"user_id": int64(42)}
	newSQL, newArgs, err = sample.RewriteNamedQuery(ctx, repeatSQL, repeatArgs)
	if err != nil {
		fmt.Fprintf(os.Stderr, "FAIL [3]: RewriteNamedQuery repeated placeholder error: %v\n", err)
		os.Exit(1)
	}
	expectedRepeatSQL := "SELECT id FROM accounts WHERE user_id = $1 OR owner_id = $1"
	if newSQL != expectedRepeatSQL {
		fmt.Fprintf(os.Stderr, "FAIL [3]: repeat SQL mismatch: expected %q, got %q\n", expectedRepeatSQL, newSQL)
		os.Exit(1)
	}
	if len(newArgs) != 1 || newArgs[0] != int64(42) {
		fmt.Fprintf(os.Stderr, "FAIL [3]: repeat args mismatch: got %v\n", newArgs)
		os.Exit(1)
	}

	// 4. NamedArgs.RewriteQuery preserves @ symbols within string literals, quoted identifiers, and SQL comments
	complexSQL := "SELECT '@not_a_param', \"@not_a_col\", -- comment with @ignored\n/* multiline @ignored */ id FROM users WHERE tenant_id = @tenant_id"
	complexArgs := pgx.NamedArgs{"tenant_id": int64(5)}
	newSQL, newArgs, err = sample.RewriteNamedQuery(ctx, complexSQL, complexArgs)
	if err != nil {
		fmt.Fprintf(os.Stderr, "FAIL [4]: complex RewriteNamedQuery error: %v\n", err)
		os.Exit(1)
	}
	expectedComplexSQL := "SELECT '@not_a_param', \"@not_a_col\", -- comment with @ignored\n/* multiline @ignored */ id FROM users WHERE tenant_id = $1"
	if newSQL != expectedComplexSQL {
		fmt.Fprintf(os.Stderr, "FAIL [4]: complex SQL mismatch: expected %q, got %q\n", expectedComplexSQL, newSQL)
		os.Exit(1)
	}
	if len(newArgs) != 1 || newArgs[0] != int64(5) {
		fmt.Fprintf(os.Stderr, "FAIL [4]: complex args mismatch: got %v\n", newArgs)
		os.Exit(1)
	}

	// 5. NamedArgs.RewriteQuery permits unreferenced extra keys in the arguments map
	extraArgs := pgx.NamedArgs{
		"tenant_id": int64(7),
		"unused":    "extra_data",
	}
	newSQL, newArgs, err = sample.RewriteNamedQuery(ctx, "SELECT id FROM users WHERE tenant_id = @tenant_id", extraArgs)
	if err != nil {
		fmt.Fprintf(os.Stderr, "FAIL [5]: extra keys error: %v\n", err)
		os.Exit(1)
	}
	if len(newArgs) != 1 || newArgs[0] != int64(7) {
		fmt.Fprintf(os.Stderr, "FAIL [5]: extra keys args mismatch: got %v\n", newArgs)
		os.Exit(1)
	}

	// 6. StrictNamedArgs.RewriteQuery returns an error when SQL query references missing named parameters
	missingArgs := pgx.StrictNamedArgs{
		"tenant_id": int64(10),
	}
	_, _, err = sample.RewriteStrictNamedQuery(ctx, "SELECT id FROM users WHERE tenant_id = @tenant_id AND status = @status", missingArgs)
	if err == nil {
		fmt.Fprintf(os.Stderr, "FAIL [6]: expected error for missing parameter in StrictNamedArgs, got nil\n")
		os.Exit(1)
	}

	// 7. StrictNamedArgs.RewriteQuery returns an error when arguments map contains unused extra parameters
	unusedStrictArgs := pgx.StrictNamedArgs{
		"tenant_id": int64(10),
		"extra_arg": "invalid",
	}
	_, _, err = sample.RewriteStrictNamedQuery(ctx, "SELECT id FROM users WHERE tenant_id = @tenant_id", unusedStrictArgs)
	if err == nil {
		fmt.Fprintf(os.Stderr, "FAIL [7]: expected error for unused parameter in StrictNamedArgs, got nil\n")
		os.Exit(1)
	}

	// 8. StructArgs and StrictStructArgs map exported struct fields and db tags into QueryRewriter
	criteria := sample.UserQueryCriteria{
		TenantID: int64(88),
		Email:    "test@example.com",
		Status:   "active",
		Internal: "secret",
	}
	structSQL := "SELECT id FROM users WHERE tenant_id = @tenant_id AND email = @email AND status = @status"
	newSQL, newArgs, err = sample.RewriteStructQuery(ctx, structSQL, criteria)
	if err != nil {
		fmt.Fprintf(os.Stderr, "FAIL [8]: RewriteStructQuery error: %v\n", err)
		os.Exit(1)
	}
	expectedStructArgs := []any{int64(88), "test@example.com", "active"}
	if !reflect.DeepEqual(newArgs, expectedStructArgs) {
		fmt.Fprintf(os.Stderr, "FAIL [8]: StructArgs args mismatch: expected %v, got %v\n", expectedStructArgs, newArgs)
		os.Exit(1)
	}

	// Also verify StrictStructArgs fails if a field is omitted from the SQL query
	partialSQL := "SELECT id FROM users WHERE tenant_id = @tenant_id"
	_, _, err = sample.RewriteStrictStructQuery(ctx, partialSQL, criteria)
	if err == nil {
		fmt.Fprintf(os.Stderr, "FAIL [8]: expected error for StrictStructArgs with unused struct fields\n")
		os.Exit(1)
	}

	fmt.Println("PASS: all pgx.NamedArgs contract assertions verified successfully.")
}

오리진 시더

익명